[arch-commits] Commit in dvgrab/trunk (PKGBUILD)

Evangelos Foutras foutrelis at archlinux.org
Tue Jun 27 17:28:37 UTC 2017


    Date: Tuesday, June 27, 2017 @ 17:28:36
  Author: foutrelis
Revision: 241268

upgpkg: dvgrab 3.5-7

- Build with Quicktime support
- Use upstream git source that fixes a build issue with GCC 6 and also:
  https://bugs.launchpad.net/lsm/+bug/859108

Modified:
  dvgrab/trunk/PKGBUILD

----------+
 PKGBUILD |   25 +++++++++++++++----------
 1 file changed, 15 insertions(+), 10 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2017-06-27 16:57:07 UTC (rev 241267)
+++ PKGBUILD	2017-06-27 17:28:36 UTC (rev 241268)
@@ -4,25 +4,30 @@
 
 pkgname=dvgrab
 pkgver=3.5
-pkgrel=6
+_commit=e46042e0c7b3523b6854ee547b0534e8310b7460
+pkgrel=7
 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')
+depends=('gcc-libs' 'libdv' 'libavc1394' 'libjpeg-turbo' 'libiec61883'
+         'libquicktime')
+makedepends=('git')
+source=("git+https://github.com/ddennedy/dvgrab.git#commit=$_commit")
+sha256sums=('SKIP')
 
+prepare() {
+  cd $pkgname
+  autoreconf -vi
+}
+
 build() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
+  cd $pkgname
   ./configure --prefix=/usr
   make
 }
 
 package() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  make DESTDIR="${pkgdir}" install
+  cd $pkgname
+  make DESTDIR="$pkgdir" install
 }



More information about the arch-commits mailing list