forked from ports/contrib
24 lines
659 B
Plaintext
24 lines
659 B
Plaintext
# Description: full featured console cd-ripper script
|
|
# URL: http://jk.yazzy.org/projects/vlorb/
|
|
# Maintainer: Han Boetes <han@mijncomputer.nl>
|
|
# Packager: Han Boetes <han@mijncomputer.nl>
|
|
# Depends on: p5-cddb cdparanoia
|
|
# Nice to have: flac, oggenc, vorbisgain, easytag
|
|
|
|
name=vlorb
|
|
version=1.2
|
|
release=2
|
|
source="
|
|
http://jk.yazzy.org/projects/vlorb/releases/$name-$version.tar.gz
|
|
http://jk.yazzy.org/projects/vlorb/patches/$name-${version}_fix_escape.diff
|
|
"
|
|
|
|
build()
|
|
{
|
|
cd $name-$version
|
|
# bizarre!
|
|
sed -i 's/mkdir -p/install -d/' Makefile
|
|
patch -i $SRC/$name-${version}_fix_escape.diff
|
|
make install prefix=$PKG/usr
|
|
}
|