mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
23 lines
671 B
Bash
23 lines
671 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
|
||
|
# Contributor: Cory Farmer <rbgkofi@ameritech.net>
|
||
|
pkgname=vorbisgain
|
||
|
pkgver=0.37
|
||
|
pkgrel=1
|
||
|
pkgdesc="A utility that computes the ReplayGain values for Ogg Vorbis files."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://sjeng.org/vorbisgain.html"
|
||
|
license=('GPL')
|
||
|
depends=('libvorbis')
|
||
|
source=(http://sjeng.org/ftp/vorbis/${pkgname}-${pkgver}.tar.gz)
|
||
|
md5sums=('850b05a7b2b0ee67edb5a27b8c6ac3a2')
|
||
|
|
||
|
build() {
|
||
|
cd ${startdir}/src/${pkgname}-${pkgver}
|
||
|
./configure --prefix=/usr \
|
||
|
--enable-recursive \
|
||
|
--mandir=/usr/share/man
|
||
|
make || return 1
|
||
|
make DESTDIR=${startdir}/pkg install
|
||
|
}
|