mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-09 06:51:44 +00:00
e86b55727a
and perform other minor cleanups along the way, whenever noticed.
38 lines
774 B
Makefile
38 lines
774 B
Makefile
# Created by: Vincent Tantardini <vinc@FreeBSD-fr.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cuetools
|
|
PORTVERSION= 1.3.1
|
|
PORTREVISION= 3
|
|
CATEGORIES= audio
|
|
MASTER_SITES= BERLIOS
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Utilities for working with CUE and TOC files
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAN1= cuebreakpoints.1 cueconvert.1 cueprint.1
|
|
PORTDOCS= README
|
|
PORTEXAMPLES= cuetag.sh
|
|
PLIST_FILES= bin/cuebreakpoints bin/cueconvert bin/cueprint
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-install:
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DOCSDIR}
|
|
.endif
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/extras/cuetag.sh ${EXAMPLESDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|