summaryrefslogtreecommitdiff
path: root/community/dvgrab
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2013-12-27 23:55:53 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2013-12-27 23:55:53 +0000
commit65eeff79fff8a1bfdf67ca51d147384f46f4d5c0 (patch)
treefbfdff322b28d9a3c37e6e31c94caf1d8e48dac1 /community/dvgrab
parentd53c44f055929b18d7d1b25f8367ee5836c435fc (diff)
Fri Dec 27 23:54:04 UTC 2013
Diffstat (limited to 'community/dvgrab')
-rw-r--r--community/dvgrab/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/community/dvgrab/PKGBUILD b/community/dvgrab/PKGBUILD
new file mode 100644
index 000000000..c39f319f7
--- /dev/null
+++ b/community/dvgrab/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 102099 2013-12-05 09:01:04Z giovanni $
+# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
+# Contributor: Jason Chu <jason@archlinux.org>
+
+pkgname=dvgrab
+pkgver=3.5
+pkgrel=4
+pkgdesc="Saves audio and video data from an IEEE (FireWire) digital source"
+arch=('i686' 'x86_64')
+url="http://www.kinodv.org/"
+license=('GPL')
+depends=('libdv' 'libavc1394' 'libjpeg-turbo' 'libiec61883' 'gcc-libs')
+makedepends=('pkgconfig')
+source=("http://downloads.sourceforge.net/kino/${pkgname}-${pkgver}.tar.gz")
+md5sums=('b39a242ce63e80fc347ab59931f75649')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+}