diff options
Diffstat (limited to 'graphics/avinfo/Makefile')
-rw-r--r-- | graphics/avinfo/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/graphics/avinfo/Makefile b/graphics/avinfo/Makefile new file mode 100644 index 000000000000..544cf59727bd --- /dev/null +++ b/graphics/avinfo/Makefile @@ -0,0 +1,33 @@ +# ex:ts=8 +# Ports collection Makefile for: avinfo +# Date created: Feb 7, 2003 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= avinfo +PORTVERSION= 0.5 +CATEGORIES= graphics +MASTER_SITES= http://anime.org.ru/soft/avinfo/ + +MAINTAINER= ports@FreeBSD.org + +USE_ZIP= yes +WRKSRC= ${WRKDIR}/src + +post-patch: + @(cd ${WRKSRC} && ${CP} messages.c temp ; \ + ${CAT} temp | col -b > messages.c) + +do-build: + @(cd ${WRKSRC} && ${CC} ${CFLAGS} -o avinfo avinfo.c) + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/avinfo ${PREFIX}/bin +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/../DOC/* ${DOCSDIR} +.endif + +.include <bsd.port.mk> |