095464f74f
Changes since 1.1 ----------------- * cuebreakpoints was not printing the last track breakpoint. This has been fixed. * cueprint now prints a zero-length string for undefined values. Flags, width, and precision are applied to conversion characters which have no conversion. * Added a tagging script, cuetag.sh, which uses cueprint, vorbiscomment, and mp3info to tag Ogg Vorbis and MP3 files. This needs more testing and documentation. * Added a track selection flag to cueprint. Changes since 1.0 ----------------- * File formats documentation has been readded and updated (docs/formats.txt). * ``CDTEXTFILE`` is now a recognized (but ignored) keyword. * If only a disc or track template is specified on the command line, then only the disc or track information is printed, respectively. * cueprint now supports flags and width and precision values for template expansion (like the printf command). Changes since 0.6 ----------------- * cuetools-1.x is a significant code rewrite of 0.x. The cue/toc parsing code has been reimplemented in lex/yacc. * cuerename has been replaced by the more general utility cueprint. * Usage syntax of the utilities has changed. See the respective man pages.
32 lines
1,000 B
Makefile
32 lines
1,000 B
Makefile
# $NetBSD: Makefile,v 1.3 2005/01/03 22:48:40 jmmv Exp $
|
|
#
|
|
|
|
DISTNAME= cuetools-1.2
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://download.berlios.de/cuetools/
|
|
|
|
MAINTAINER= jmmv@NetBSD.org
|
|
HOMEPAGE= http://cuetools.berlios.de/
|
|
COMMENT= Set of utilities to manipulate cue and toc files
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
USE_BUILDLINK3= yes
|
|
USE_GNU_TOOLS+= make
|
|
|
|
INSTALLATION_DIRS= bin man/man1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tools/cuebreakpoints ${PREFIX}/bin/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tools/cueconvert ${PREFIX}/bin/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/tools/cueprint ${PREFIX}/bin/
|
|
${INSTALL_DATA} ${WRKSRC}/man/cuebreakpoints.man \
|
|
${PREFIX}/man/man1/cuebreakpoints.1
|
|
${INSTALL_DATA} ${WRKSRC}/man/cueconvert.man \
|
|
${PREFIX}/man/man1/cueconvert.1
|
|
${INSTALL_DATA} ${WRKSRC}/man/cueprint.man \
|
|
${PREFIX}/man/man1/cueprint.1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/cuetools/
|
|
${INSTALL_DATA} ${WRKSRC}/formats.txt ${PREFIX}/share/doc/cuetools/
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|