dir2ogg (0.11.8) RELEASED; urgency=low * Process files in alphabetical order (Closes: #536040). * Support converting directories without specifying -d (Closes: #535209). * Introduce support for Monkey's Audio with APEv2 tags (LP: #279834). * Introduce support for Musepack with APEv2 tags. * Introduce support for WavPack files with APEv2 tags. * Make output more readable: - Progress message stating the current file and the decoder. - New command-line option -Q,--quiet to not display progress from oggenc. - Do not show progress from decoder at at all, as it may conflict with the output of oggenc. -- Julian Andres Klode <jak@debian.org> Tue, 04 Aug 2009 20:23:00 +0200
30 lines
813 B
Makefile
30 lines
813 B
Makefile
# $NetBSD: Makefile,v 1.11 2009/11/04 22:12:30 guigui2 Exp $
|
|
#
|
|
|
|
DISTNAME= dir2ogg-0.11.8
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://jak-linux.org/projects/dir2ogg/0.11/
|
|
|
|
MAINTAINER= netbsd@guigui2.net
|
|
HOMEPAGE= http://jak-linux.org/projects/dir2ogg
|
|
COMMENT= Command-line {wav,mp3,m4a} to ogg converter
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_LANGUAGES= # none
|
|
PYTHON_VERSIONS_ACCEPTED= 25 24
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
|
|
REPLACE_PYTHON+= ${WRKSRC}/dir2ogg
|
|
NO_BUILD= yes
|
|
|
|
.include "../../audio/py-mutagen/buildlink3.mk"
|
|
.include "../../lang/python/application.mk"
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/dir2ogg \
|
|
${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/dir2ogg.1 \
|
|
${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|