22 lines
543 B
Makefile
22 lines
543 B
Makefile
PORTNAME= dvdimagecmp
|
|
PORTVERSION= 0.3
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SUNSITE/apps/video
|
|
|
|
MAINTAINER= ports@thepentagon.org
|
|
COMMENT= Simple tool for comparing an image to a burned disc
|
|
WWW= https://www.ibiblio.org/pub/linux/apps/video/dvdimagecmp-0.3.lsm
|
|
|
|
USES= gmake tar:tgz
|
|
|
|
CFLAGS+= -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
|
|
|
|
PLIST_FILES= bin/dvdimagecmp
|
|
|
|
do-build:
|
|
(cd ${WRKSRC}; ${CC} ${CFLAGS} -o dvdimagecmp dvdimagecmp.c )
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/dvdimagecmp ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|