mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
26 lines
805 B
Bash
26 lines
805 B
Bash
|
# $Id: PKGBUILD 6105 2008-07-23 21:40:44Z giovanni $
|
||
|
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
|
||
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||
|
|
||
|
pkgname=normalize
|
||
|
pkgver=0.7.7
|
||
|
pkgrel=3
|
||
|
pkgdesc="normalize is a tool for adjusting the volume of WAV files to a standard level"
|
||
|
arch=('i686' 'x86_64')
|
||
|
license=('GPL')
|
||
|
depends=('audiofile' 'libmad' 'vorbis-tools' 'lame' 'flac' 'mpg123')
|
||
|
source=(http://download.savannah.gnu.org/releases/${pkgname}/${pkgname}-${pkgver}.tar.bz2)
|
||
|
url="http://normalize.nongnu.org"
|
||
|
md5sums=('1749b16fc7a08aa5d0cf9f76eeaa8436')
|
||
|
|
||
|
build() {
|
||
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr \
|
||
|
--mandir=/usr/share/man \
|
||
|
--with-audiofile \
|
||
|
--with-mad
|
||
|
make || return 1
|
||
|
make DESTDIR=${startdir}/pkg install
|
||
|
}
|
||
|
|