Date: Tuesday, February 13, 2018 @ 11:19:39
Author: jsteel
Revision: 293780
archrelease: copy trunk to extra-x86_64
Added:
dvdbackup/repos/extra-x86_64/
dvdbackup/repos/extra-x86_64/PKGBUILD
(from rev 293779, dvdbackup/trunk/PKGBUILD)
--+
PKGBUILD | 31 +++
1 file changed, 31 insertions(+)
Copied: dvdbackup/repos/extra-x86_64/PKGBUILD (from rev 293779,
dvdbackup/trunk/PKGBUILD)
===
--- extra-x86_64/PKGBUILD (rev 0)
+++ extra-x86_64/PKGBUILD 2018-02-13 11:19:39 UTC (rev 293780)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Jonathan Steel
+# Contributor: yugrotavele
+# Contributor: Varun Acharya
+# Contributor: Nicolai Lissner
+
+pkgname=dvdbackup
+pkgver=0.4.2
+pkgrel=2
+pkgdesc="A tool to rip video DVDs from the command line"
+arch=('x86_64')
+url="https://dvdbackup.sourceforge.net";
+license=('GPL')
+depends=('libdvdread')
+optdepends=('libdvdcss: to decrypt encrypted DVDs')
+source=(https://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
+}