blob: f1db44b987119f875a4aea8e80c064cc5f382dc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 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=1
source=(http://downloads.sourceforge.net/dvdbackup/dvdbackup-$version.tar.xz)
build(){
cd $name-$version
./configure \
--prefix=/usr \
--disable-nls
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/share/doc
}
|