81be24910f
of cddb just announced, update to 1.5.6 changes: - fixed: better handling of double disc titles - fixed: isolatin1 is removed from the userpackages - fixed: AllMusic works again (new layout of website) - added: new template paper-box, picture - added: added option template_list, which generates list of feasible templates - changed: better regular expression for getting covers from AllMusic.com - fixed: proper encoding of languages through inputenc package
32 lines
850 B
Makefile
32 lines
850 B
Makefile
# $NetBSD: Makefile,v 1.21 2006/07/03 18:45:24 drochner Exp $
|
|
#
|
|
|
|
DISTNAME= disc-cover-1.5.6
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.vanhemert.co.uk/files/
|
|
|
|
MAINTAINER= drochner@NetBSD.org
|
|
HOMEPAGE= http://www.vanhemert.co.uk/disc-cover.html
|
|
COMMENT= Generation of CD covers
|
|
|
|
DEPENDS+= p5-Audio-CD>=0.05:../../audio/p5-Audio-CD
|
|
|
|
USE_TOOLS+= perl:run pod2man
|
|
REPLACE_PERL= disc-cover
|
|
|
|
DCTMPL= ${PREFIX}/share/disc-cover/templates
|
|
|
|
INSTALLATION_DIRS= bin man/man1
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${POD2MAN} disc-cover > disc-cover.1
|
|
${SED} "s|@DCTMPL@|${DCTMPL}|g" <${WRKSRC}/disc-cover \
|
|
>${WRKDIR}/disc-cover
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/disc-cover ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/disc-cover.1 ${PREFIX}/man/man1
|
|
${INSTALL_DATA_DIR} ${DCTMPL}
|
|
${INSTALL_DATA} ${WRKSRC}/templates/* ${DCTMPL}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|