PKGBUILDs/community/mp3gain/PKGBUILD
2009-10-09 21:15:33 -05:00

21 lines
614 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Alessio 'mOLOk' Bolognino <themolok@gmail.com>
# Contributor: keith <keith@hubbard.net>
pkgname=mp3gain
pkgver=1.4.6
pkgrel=2
pkgdesc="Lossless mp3 normalizer with statistical analysis "
arch=('i686' 'x86_64')
url="http://mp3gain.sourceforge.net"
license=("GPL")
depends=('glibc')
source=(http://downloads.sourceforge.net/$pkgname/$pkgname-${pkgver//./_}-src.zip)
md5sums=('4327167375dce5bce97625729a95fdb9')
build() {
cd $startdir/src
make || return 1
mkdir -p $startdir/pkg/usr/bin
make INSTALL_PATH=$startdir/pkg/usr/bin install
}