blob: b3cba0520f85466949f2684c1248df68c261f38d (
plain)
1 # Description: Computes replaygain information for Ogg Vorbis files.
2 # URL: https://sjeng.org/vorbisgain.html
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: libvorbis
5
6 name=vorbisgain
7 version=0.37
8 release=2
9 source=(http://sjeng.org/ftp/vorbis/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 sh configure \
15 --prefix=/usr \
16 --mandir=/usr/share/man
17
18 make
19 make DESTDIR=$PKG install
20 }
|