blob: 6e2ccd3f02ed3b7d282a334dc204da20d94e2c3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Description: Tool to rip video DVDs from the command line
# URL: http://dvdbackup.sourceforge.net/
# Maintainer: Erich Eckner, crux at eckner dot net
# Contributor: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on: libdvdread
name=dvdbackup
version=0.4.2
release=2
source=(http://downloads.sourceforge.net/dvdbackup/dvdbackup-$version.tar.xz
dvdbackup-dvdread-6.1.patch)
build(){
cd $name-$version
patch -p0 -i ../dvdbackup-dvdread-6.1.patch
./configure \
--prefix=/usr \
--disable-nls
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}
|