diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/vobcopy/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/vobcopy/PKGBUILD')
-rw-r--r-- | community/vobcopy/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/vobcopy/PKGBUILD b/community/vobcopy/PKGBUILD new file mode 100644 index 000000000..1bffd0fad --- /dev/null +++ b/community/vobcopy/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 22478 2010-07-21 21:11:19Z lcarlier $ +# Maintainer: Daenyth +# Contributor: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: Tino Reichardt <milky-archlinux@mcmilk.de> + +pkgname=vobcopy +pkgver=1.2.0 +pkgrel=3 +pkgdesc="Copies DVD .vob files to harddisk, decrypting them on the way" +arch=('i686' 'x86_64') +url="http://www.vobcopy.org" +license=('GPL2') +depends=('libdvdread>=4.1.3' 'libdvdcss') +source=(http://www.vobcopy.org/download/$pkgname-$pkgver.tar.bz2) +md5sums=('88f735ccd051093ff40dab4597bc586e') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + make +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + + make DESTDIR="$pkgdir" PREFIX=/usr/ MANDIR=/usr/share/man install +} |