blob: 8353b8f213f582ff92e0a2e7ac96be189becb581 (
plain)
1 # Description: Extract DVD .vob files.
2 # URL: http://vobcopy.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: libdvdnav
5
6 name=vobcopy
7 version=1.2.0-7
8 release=1
9 source=(https://github.com/barak/vobcopy/archive/debian/$version/$name-$version.tar.gz
10 vobcopy-1.2.0_hardcode-tries-to-1.patch)
11
12 build() {
13 cd $name-debian-$version
14
15 patch -p 1 -i $SRC/vobcopy-1.2.0_hardcode-tries-to-1.patch
16
17 make
18 make DESTDIR="$PKG" PREFIX=/usr/ MANDIR=/usr/share/man install
19
20 rm -r \
21 $PKG/usr/share/man/de \
22 $PKG/usr/share/doc
23 }
|