mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-01-27 23:44:04 +00:00
22 lines
614 B
Bash
22 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
|
||
|
}
|