962a93a492
MP3Gain does not just do peak normalization, as many normalizers do. Instead, it does some statistical analysis to determine how loud the file actually sounds to the human ear. Also, the changes MP3Gain makes are completely lossless. There is no quality lost in the change because the program adjusts the mp3 file directly, without decoding and re-encoding. From Chris Kuethe, <ckuethe@ualberta.ca> (Maintainer)
35 lines
643 B
Makefile
35 lines
643 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/03/04 09:16:03 mbalmer Exp $
|
|
|
|
COMMENT= "audio file volume normalizer"
|
|
|
|
DISTNAME= mp3gain-1_4_6-src
|
|
PKGNAME= mp3gain-1.4.6
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mp3gain/}
|
|
|
|
HOMEPAGE= http://mp3gain.sourceforge.net/
|
|
EXTRACT_SUFX= .zip
|
|
|
|
MAINTAINER= Chris Kuethe <ckuethe@ualberta.ca>
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c m
|
|
|
|
ALL_TARGET= all
|
|
USE_GMAKE= Yes
|
|
NO_REGRESS= Yes
|
|
|
|
WRKSRC=$(WRKDIR)
|
|
|
|
do-configure:
|
|
@true
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/mp3gain ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|