3a80a7f8fc
cuetools is a set of utilities for working with Cue Sheet (cue) and Table of Contents (toc) files. It includes: cueconvert - convert between the cue and toc formats cuebreakpoints - print the breakpoints from a cue or toc file cueprint - print disc and track infomation for a cue or toc file
29 lines
579 B
Makefile
29 lines
579 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/10/11 14:17:17 sthen Exp $
|
|
|
|
COMMENT= tools for handling audio-file cue sheets and toc files
|
|
|
|
DISTNAME= cuetools-1.3.1
|
|
|
|
CATEGORIES= audio textproc
|
|
|
|
HOMEPAGE= http://developer.berlios.de/projects/cuetools/
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += c
|
|
|
|
MASTER_SITES= ${MASTER_SITE_BERLIOS:=cuetools/}
|
|
|
|
SEPARATE_BUILD= Yes
|
|
USE_GMAKE= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/extras/cuetag.sh ${PREFIX}/bin/cuetag
|
|
|
|
.include <bsd.port.mk>
|