21 lines
496 B
Plaintext
21 lines
496 B
Plaintext
# Description: vobcopy copies DVD .vob files to harddisk.
|
|
# URL: http://vobcopy.org/
|
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
|
# Packager: Martin Opel, mo at obbl-net dot de
|
|
# Depends on: libdvdnav
|
|
|
|
name=vobcopy
|
|
version=1.1.0
|
|
release=1
|
|
source=(http://lpn.rnbhq.org/download/vobcopy-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd vobcopy-$version
|
|
sh ./configure.sh --prefix=$PKG/usr
|
|
install -d $PKG/usr/{bin,man/man1}
|
|
make
|
|
make install
|
|
rm -r $PKG/usr/man/de/
|
|
}
|
|
|