18 lines
468 B
Plaintext
18 lines
468 B
Plaintext
# Description: CDDA extraction tool with jitter correction
|
|
# URL: http://xiph.org/paranoia/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
name=cdparanoia
|
|
version=10.2
|
|
release=2
|
|
source=(http://downloads.xiph.org/releases/$name/$name-III-$version.src.tgz
|
|
$name-$version-gcc43.patch)
|
|
|
|
build () {
|
|
cd $name-III-$version
|
|
patch -p0 -i $SRC/$name-$version-gcc43.patch
|
|
./configure --prefix=/usr
|
|
make -j1
|
|
make prefix=$PKG/usr install
|
|
}
|