developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
31 lines
766 B
Makefile
31 lines
766 B
Makefile
# $NetBSD: Makefile,v 1.8 2006/03/04 21:28:58 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= rip-1.07
|
|
CATEGORIES= audio perl5
|
|
MASTER_SITES= http://rip.sourceforge.net/download/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://rip.sourceforge.net/
|
|
COMMENT= Command-line based audio CD ripper and encoder
|
|
|
|
DEPENDS+= p5-CDDB_get>=2.23:../../audio/p5-CDDB_get
|
|
DEPENDS+= p5-MP3-Info>=1.00:../../audio/p5-MP3-Info
|
|
|
|
NO_BUILD= yes
|
|
USE_TOOLS+= perl:run
|
|
REPLACE_PERL= rip
|
|
|
|
DOCFILES= BUGS CHANGELOG COPYING FAQ INSTALLING README
|
|
DOCDIR= ${PREFIX}/share/doc/rip
|
|
|
|
INSTALLATION_DIRS= bin
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/rip ${PREFIX}/bin/rip
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
for i in ${DOCFILES}; do \
|
|
${INSTALL_DATA} ${WRKSRC}/$$i ${DOCDIR}; \
|
|
done
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|