contrib/vobcopy/Pkgfile

24 lines
582 B
Plaintext
Raw Normal View History

2008-03-03 12:19:02 +01:00
# Description: Extract DVD .vob files.
2020-06-01 17:45:48 +02:00
# URL: https://github.com/barak/vobcopy
2014-11-10 13:28:07 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: libdvdnav
2007-12-05 10:58:35 +01:00
name=vobcopy
2022-06-19 12:45:15 +02:00
version=1.2.1
2007-12-05 10:58:35 +01:00
release=1
2022-06-19 12:45:15 +02:00
source=(https://github.com/barak/vobcopy/archive/$version/$name-$version.tar.gz
2009-11-08 03:34:55 +01:00
vobcopy-1.2.0_hardcode-tries-to-1.patch)
2007-12-05 10:58:35 +01:00
build() {
2022-06-19 12:45:15 +02:00
cd $name-$version
2019-10-14 10:33:55 +02:00
2009-11-08 03:34:55 +01:00
patch -p 1 -i $SRC/vobcopy-1.2.0_hardcode-tries-to-1.patch
2019-10-14 10:33:55 +02:00
2022-06-19 12:45:15 +02:00
autoreconf --install --force --symlink
./configure --prefix=/usr
2008-03-03 12:19:02 +01:00
make
2019-10-14 10:33:55 +02:00
make DESTDIR="$PKG" PREFIX=/usr/ MANDIR=/usr/share/man install
2007-12-05 10:58:35 +01:00
2022-06-19 12:45:15 +02:00
rm -r $PKG/usr/share/{man/de,doc}
2009-11-08 03:34:55 +01:00
}