summaryrefslogtreecommitdiff
path: root/community/dvdbackup/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
committerroot <root@rshg054.dnsready.net>2013-08-13 01:33:19 -0700
commit7a65a910b77ad191d69881098c47f9b0c852d92e (patch)
tree9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/dvdbackup/PKGBUILD
parent60da6abff6c9577a783d72865f11de7a585e912e (diff)
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/dvdbackup/PKGBUILD')
-rw-r--r--community/dvdbackup/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/community/dvdbackup/PKGBUILD b/community/dvdbackup/PKGBUILD
new file mode 100644
index 000000000..de1493b26
--- /dev/null
+++ b/community/dvdbackup/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 95394 2013-08-10 16:45:34Z jsteel $
+# Maintainer: Jonathan Steel <mail at jsteel dot org>
+# Contributor: yugrotavele <yugrotavele at archlinux dot us>
+# Contributor: Varun Acharya <varun@archlinux.org>
+# Contributor: Nicolai Lissner <nlissne@linux01.gwdg.de>
+
+pkgname=dvdbackup
+pkgver=0.4.2
+pkgrel=2
+pkgdesc="A tool to rip video DVDs from the command line"
+arch=('i686' 'x86_64')
+url="http://dvdbackup.sourceforge.net"
+license=('GPL')
+depends=('libdvdread')
+optdepends=('libdvdcss: to decrypt encrypted DVDs')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.xz)
+md5sums=('28f273b2f27a3afea3a3c965ddbede86')
+
+build() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ ./configure --prefix=/usr
+
+ make
+}
+
+package() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ make DESTDIR="$pkgdir"/ install
+}