2296c0c7ec
- cuerename - fixed bug that was causing original filenames to be modified - cuerename - added "replace=FROM/TO" option - cuerename - improved file prefix/suffix code - cuerename - neither %f or %F contain a '.' now (strict was getting rid of this in some cases). added a %. which expands to a '.' if the filename had one. '%f%.%F' will expand to original filename, with formatting applied to prefix and suffix. - cuerename - allow for comments (lines beginning with '#') in option file - cuerename - added an escape character '\' to replace, so replacing a '/' is possible released cuetools-0.5 - CATALOG field should not be quoted for cue files. Updated cue.c and formats. released cuetools-0.5.1 - modified source package directory structure - CATALOG was still being quoted when writing a cue file. - index/pregap handling improved, however it may still contain bugs. - ~/.cuerenamerc is now ~/.cuerename released cuetools-0.5.2 - renamed ChangeLog to CHANGES - added man pages - removed cuebreakpoints (obsoleted by shntool-2.0.0) released cuetools-0.6
31 lines
1 KiB
Makefile
31 lines
1 KiB
Makefile
# $NetBSD: Makefile,v 1.2 2004/05/07 11:27:16 jmmv Exp $
|
|
#
|
|
|
|
DISTNAME= cuetools-0.6
|
|
CATEGORIES= misc
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cuetools/}
|
|
|
|
MAINTAINER= jmmv@NetBSD.org
|
|
HOMEPAGE= http://cuetools.sourceforge.net/
|
|
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}/src/cueconvert ${PREFIX}/bin/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/cuerename ${PREFIX}/bin/
|
|
${INSTALL_DATA} ${WRKSRC}/man/cueconvert.1 ${PREFIX}/man/man1
|
|
${INSTALL_DATA} ${WRKSRC}/man/cuerename.1 ${PREFIX}/man/man1
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/cuetools/
|
|
${INSTALL_DATA} ${WRKSRC}/doc/formats ${PREFIX}/share/doc/cuetools/
|
|
${INSTALL_DATA} ${WRKSRC}/doc/useage ${PREFIX}/share/doc/cuetools/usage
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/cuetools/
|
|
${INSTALL_DATA} ${WRKSRC}/doc/cuerename \
|
|
${PREFIX}/share/examples/cuetools/cuerename
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|