summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b9bea3c265922d661bb5a718f6f759f46e15168f (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
29
30
# Maintainer: 
# Contributor: Jaroslav Lichtblau <svetlemodry@archlinux.org>
# Contributor: Shinlun Hsieh <yngwiexx@yahoo.com.tw>
# Contributor: Cory Farmer <rbgkofi@ameritech.net>

pkgname=vorbisgain
pkgver=0.37
pkgrel=6
pkgdesc="A utility that computes the ReplayGain values for Ogg Vorbis files."
arch=('x86_64')
url="https://sjeng.org/vorbisgain.html"
license=('GPL')
depends=('libvorbis')
source=(https://sjeng.org/ftp/vorbis/${pkgname}-${pkgver}.tar.gz)
sha512sums=('67181834e1a0d7c6e1ccd984e2d30ebf1dcdff84caa77f75e5e771de8414904810e966a43852b7184e075d2428fd8b431124835efc370ce6504b8b2756746e04')

build() {
  cd ${pkgname}-${pkgver}

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

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

  make DESTDIR="${pkgdir}" install
}