freebsd-ports/audio/enscribe/Makefile

39 lines
994 B
Makefile
Raw Normal View History

# New ports collection makefile for: enscribe
# Date created: 15 Jul 2004
# Whom: Jean-Yves Lefort <jylefort@brutele.be>
#
# $FreeBSD$
#
PORTNAME= enscribe
PORTVERSION= 0.0.3
CATEGORIES= audio graphics
MASTER_SITES= http://jbd.zayda.net/enscribe/
EXTRACT_SUFX= .tgz
MAINTAINER= jylefort@brutele.be
COMMENT= Create digital audio watermark images from photographic images
LIB_DEPENDS= gd:${PORTSDIR}/graphics/gd \
png:${PORTSDIR}/graphics/png \
jpeg:${PORTSDIR}/graphics/jpeg \
freetype:${PORTSDIR}/print/freetype2 \
sndfile:${PORTSDIR}/audio/libsndfile
do-build:
cd ${BUILD_WRKSRC}; ${CC} ${CFLAGS} \
`pkg-config --cflags --libs sndfile freetype2` \
-I${LOCALBASE}/include -L${LOCALBASE}/lib \
-lgd -lpng -ljpeg -lm -lz \
-o enscribe enscribe.c
do-install:
${MKDIR} ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/enscribe ${PREFIX}/bin
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
.endif
.include <bsd.port.mk>