19 lines
393 B
Plaintext
19 lines
393 B
Plaintext
# Description: Computes replaygain information for Ogg Vorbis files
|
|
# URL: http://sjeng.org/vorbisgain.html
|
|
# Depends on: libogg, libvorbis
|
|
# Maintainer: Tilman Sauerbeck, tilman at code-monkey dot de
|
|
|
|
name=vorbisgain
|
|
version=0.34
|
|
release=1
|
|
source=(http://sjeng.org/ftp/vorbis/$name-$version.zip)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
sh configure --prefix=/usr
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
}
|