Add cuetools, a set of utilities for manipulating cue and toc sheets
and converting between them. PR: ports/60714 Submitted by: Vincent Tantardini <vinc@FreeBSD-fr.org>
This commit is contained in:
parent
dd34ea289f
commit
277046d514
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=96945
5 changed files with 54 additions and 0 deletions
|
@ -50,6 +50,7 @@
|
|||
SUBDIR += csound
|
||||
SUBDIR += csound-manual
|
||||
SUBDIR += cue2toc
|
||||
SUBDIR += cuetools
|
||||
SUBDIR += cymbaline
|
||||
SUBDIR += daapd
|
||||
SUBDIR += daaplib
|
||||
|
|
34
audio/cuetools/Makefile
Normal file
34
audio/cuetools/Makefile
Normal file
|
@ -0,0 +1,34 @@
|
|||
# New ports collection makefile for: cuetools
|
||||
# Date created: 30 December 2003
|
||||
# Whom: Vincent Tantardini <vinc@FreeBSD-fr.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= cuetools
|
||||
PORTVERSION= 0.4
|
||||
CATEGORIES= audio
|
||||
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= ${PORTNAME}
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= A set of utilities for working with cue files and toc files
|
||||
|
||||
USE_REINPLACE= yes
|
||||
|
||||
pre-patch:
|
||||
@${REINPLACE_CMD} -e 's,/usr/local,${PREFIX},g' ${WRKSRC}/Makefile
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
${MKDIR} ${DOCSDIR}
|
||||
${MKDIR} ${EXAMPLESDIR}
|
||||
.for F in README README.formats ChangeLog
|
||||
${INSTALL_MAN} ${WRKSRC}/${F} ${DOCSDIR}
|
||||
.endfor
|
||||
.for E in EXAMPLE.cuerenamerc EXAMPLE.useage
|
||||
${INSTALL_MAN} ${WRKSRC}/${E} ${EXAMPLESDIR}
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
1
audio/cuetools/distinfo
Normal file
1
audio/cuetools/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (cuetools-0.4.tar.gz) = a8484e32f4dc7c0dd1cd58bced3c2ff3
|
8
audio/cuetools/pkg-descr
Normal file
8
audio/cuetools/pkg-descr
Normal file
|
@ -0,0 +1,8 @@
|
|||
Cuetools is a set of utilities for working with cue files and toc files.
|
||||
It contains:
|
||||
- cueconverter: convert between cue and toc formats
|
||||
- cuebreakpoints: output track break points from a cue/toc file, in a
|
||||
format usable by shnsplit (part of the shntool package)
|
||||
- cuerename: rename files based on a template
|
||||
|
||||
WWW: http://cuetools.sourceforge.net/
|
10
audio/cuetools/pkg-plist
Normal file
10
audio/cuetools/pkg-plist
Normal file
|
@ -0,0 +1,10 @@
|
|||
bin/cuebreakpoints
|
||||
bin/cueconvert
|
||||
bin/cuerename
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README.formats
|
||||
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/EXAMPLE.cuerenamerc
|
||||
%%PORTDOCS%%%%EXAMPLESDIR%%/EXAMPLE.useage
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
%%PORTDOCS%%@dirrm %%EXAMPLESDIR%%
|
Loading…
Reference in a new issue