forked from ports/contrib
26 lines
573 B
Plaintext
26 lines
573 B
Plaintext
# Description: Extract DVD .vob files.
|
|
# URL: http://vobcopy.org/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Martin Opel, mo at obbl-net dot de
|
|
# Depends on: libdvdnav
|
|
|
|
name=vobcopy
|
|
version=1.2.0-6
|
|
release=1
|
|
source=(https://github.com/barak/vobcopy/archive/debian/$version.tar.gz
|
|
vobcopy-1.2.0_hardcode-tries-to-1.patch)
|
|
|
|
build() {
|
|
cd $name-debian-$version
|
|
patch -p 1 -i $SRC/vobcopy-1.2.0_hardcode-tries-to-1.patch
|
|
sh ./configure.sh --prefix=$PKG/usr
|
|
make
|
|
make install
|
|
|
|
rm -r \
|
|
$PKG/usr/man/de \
|
|
$PKG/usr/share/doc
|
|
|
|
rmdir $PKG/usr/share
|
|
}
|