diff options
author | rxg <rxg@pkgsrc.org> | 2002-03-02 02:51:02 +0000 |
---|---|---|
committer | rxg <rxg@pkgsrc.org> | 2002-03-02 02:51:02 +0000 |
commit | c6eb3a0125e725e9b8dd15431814f719df662c89 (patch) | |
tree | acc886769b1aef74648155ebe34f16700e042c77 /audio/mp32ogg/Makefile | |
parent | eca1905a8af9a9a6da18c24f3fe6cfca6e8c146b (diff) | |
download | pkgsrc-c6eb3a0125e725e9b8dd15431814f719df662c89.tar.gz |
Add mp32ogg-0.11 - Convert MP3 files to Ogg Vorbis files
A perl script to convert MP3 files to Ogg Vorbis files, retaining ID3
information, bitrate, and optionally renaming the output files, as well
as deleting the originals.
Diffstat (limited to 'audio/mp32ogg/Makefile')
-rw-r--r-- | audio/mp32ogg/Makefile | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/audio/mp32ogg/Makefile b/audio/mp32ogg/Makefile new file mode 100644 index 00000000000..295b361acae --- /dev/null +++ b/audio/mp32ogg/Makefile @@ -0,0 +1,32 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/03/02 02:51:02 rxg Exp $ + +DISTNAME= mp32ogg-0.11 +CATEGORIES= audio perl5 +MASTER_SITES= ${MASTER_SITE_LOCAL} +EXTRACT_SUFX= # empty + +MAINTAINER= rxg@netbsd.org +HOMEPAGE= http://faceprint.com/software.phtml +COMMENT= Convert MP3 files to Ogg Vorbis files + +DEPENDS+= mpg123>=0.59.18:../../audio/mpg123 +DEPENDS+= vorbis-tools>=1.0.0.7:../../audio/vorbis-tools +DEPENDS+= p5-MP3-Info>=1.00:../../audio/p5-MP3-Info +DEPENDS+= p5-String-ShellQuote>=1.00:../../textproc/p5-String-ShellQuote + +USE_PERL5= yes + +EXTRACT_ONLY= # empty +WRKSRC= ${WRKDIR} +NO_BUILD= yes + +do-extract: + ${CP} ${_DISTDIR}/${DISTNAME} ${WRKSRC} + +post-patch: + ${SED} -e 's:/usr/bin:'${PREFIX}/bin':g' < ${WRKSRC}/${DISTNAME} > ${WRKSRC}/mp32ogg + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/mp32ogg ${PREFIX}/bin + +.include "../../mk/bsd.pkg.mk" |