blob: 31e6b1eb880c7c34b7c74534eae41e2735da3230 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Created by: Emanuel Haupt <ehaupt@critical.ch>
# $FreeBSD$
PORTNAME= malint
DISTVERSION= 0.2
CATEGORIES= audio
MASTER_SITES= http://www.nih.at/malint/ \
ftp://sunsite.univie.ac.at/pub/nih/malint/ \
CRITICAL
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= MPEG Audio stream validator
LICENSE= GPLv2
GNU_CONFIGURE= yes
NO_STAGE= yes
PORTDOCS= README
PLIST_FILES= bin/malint
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDOCS}
post-install:
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>
|