diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/vorbisgain |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/vorbisgain')
-rw-r--r-- | community/vorbisgain/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/vorbisgain/PKGBUILD b/community/vorbisgain/PKGBUILD new file mode 100644 index 000000000..395187354 --- /dev/null +++ b/community/vorbisgain/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 22308 2010-07-20 22:50:32Z mherych $ +# Maintainer: Shinlun Hsieh <yngwiexx@yahoo.com.tw> +# Contributor: Cory Farmer <rbgkofi@ameritech.net> +pkgname=vorbisgain +pkgver=0.37 +pkgrel=2 +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 +} |