507b59dca2
WaveGain is a program that applies ReplayGain to wave files. The FreeBSD port of WaveGain is with a patch from gnormalize whose author is Claudio Fernandes de Souza Rodrigues. The author of WaveGain is John Edwards. WWW: http://www.rarewares.org/others.html PR: ports/123963 Submitted by: Denise H. G. <darcsis@gmail.com>
35 lines
766 B
Makefile
35 lines
766 B
Makefile
# New ports collection makefile for: wavegain
|
|
# Date created: 24 May 2008
|
|
# Whom: Denise H. G. <darcsis@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= wavegain
|
|
PORTVERSION= 1.2.6
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://www.rarewares.org/files/others/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}srcs${EXTRACT_SUFFIX}
|
|
|
|
MAINTAINER= darcsis@gmail.com
|
|
COMMENT= A program that applies ReplayGain to wave files
|
|
|
|
LIB_DEPENDS= sndfile.1:${PORTSDIR}/audio/libsndfile
|
|
|
|
USE_ZIP= yes
|
|
USE_GMAKE= yes
|
|
USE_DOS2UNIX= audio.c wavegain.c
|
|
|
|
PLIST_FILES= bin/wavegain
|
|
|
|
WRKSRC= ${WRKDIR}/WaveGain-${PORTVERSION}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC} && ${CP} Makefile.linux Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.include <bsd.port.post.mk>
|