ac82fb07dd
normalize is a tool for adjusting the volume of audio files to a standard level. This is useful for things like creating mixed CD's and mp3 collections, where different recording levels on different albums can cause the volume to vary greatly from song to song.
37 lines
765 B
Makefile
37 lines
765 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2002/04/28 09:11:37 jasoni Exp $
|
|
|
|
COMMENT= "audio file volume normalizer"
|
|
|
|
DISTNAME= normalize-0.7.3
|
|
CATEGORIES= audio
|
|
NEED_VERSION= 1.522
|
|
MASTER_SITES= http://www.cs.columbia.edu/~cvaill/normalize/
|
|
|
|
HOMEPAGE= http://www.cs.columbia.edu/~cvaill/normalize/
|
|
|
|
MAINTAINER= Jason Ish <jasoni@openbsd.org>
|
|
|
|
# GPL license
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES= gettext
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
|
|
# Do not build xmms plugin for now.
|
|
CONFIGURE_ARGS= --disable-xmms \
|
|
--with-mad \
|
|
--with-audiofile
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
LIB_DEPENDS+= mad::audio/mad \
|
|
audiofile::devel/libaudiofile
|
|
|
|
.include <bsd.port.mk>
|
|
|
|
|