summaryrefslogtreecommitdiff
path: root/community/vorbisgain/PKGBUILD
blob: 4ca7a6479185208d6b3e91ed9e2b9773f7752df0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# $Id: PKGBUILD 115255 2014-07-07 03:02:25Z fyan $
# Maintainer: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
# Contributor: Cory Farmer <rbgkofi@ameritech.net>
pkgname=vorbisgain
pkgver=0.37
pkgrel=4
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 ${srcdir}/${pkgname}-${pkgver}

  ./configure --prefix=/usr \
  	--enable-recursive \
	--mandir=/usr/share/man
  make
}

package() {
  cd ${srcdir}/${pkgname}-${pkgver}

  make DESTDIR=${pkgdir} install
}