forked from ports/contrib
25 lines
686 B
Plaintext
25 lines
686 B
Plaintext
# Description: nifty record ripper
|
|
# URL: http://www.opensourcepartners.nl/~costar/gramofile/
|
|
# Maintainer: Han Boetes <han@mijncomputer.nl>
|
|
# Packager: Han Boetes <han@mijncomputer.nl>
|
|
# Depends on:
|
|
|
|
name=gramofile
|
|
version=1.6
|
|
release=1
|
|
source="
|
|
http://ftp.debian.org/debian/pool/main/g/gramofile/${name}_$version.orig.tar.gz
|
|
http://ftp.debian.org/debian/pool/main/g/gramofile/${name}_$version-7.diff.gz
|
|
"
|
|
|
|
build()
|
|
{
|
|
zcat ${name}_$version-7.diff.gz | patch
|
|
cd $name-$version
|
|
make
|
|
install -d $PKG/usr/{bin,man/man1}
|
|
install $SRC/$name.1 $PKG/usr/man/man1
|
|
install bplay_gramo $name $PKG/usr/bin
|
|
ln -s bplay_gramo $PKG/usr/bin/brec_gramo
|
|
}
|