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

David Runge dvzrv at archlinux.org
Sun Dec 3 18:04:56 UTC 2017


    Date: Sunday, December 3, 2017 @ 18:04:52
  Author: dvzrv
Revision: 272027

upgpkg: harvid 0.8.2-1

Updating maintainer. Updating to 0.8.2. Adding further required depends. Switching url to https.
Switching to sha512sums. Removing unneeded CFLAGS. Adding comment about lowering the make jobs. Minor fixes.

Modified:
  harvid/trunk/PKGBUILD

----------+
 PKGBUILD |   30 ++++++++++++++----------------
 1 file changed, 14 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2017-12-03 18:01:15 UTC (rev 272026)
+++ PKGBUILD	2017-12-03 18:04:52 UTC (rev 272027)
@@ -1,34 +1,32 @@
 # $Id$
-# Maintainer: speps <speps dot aur dot archlinux dot org>
+# Maintainer: David Runge <dave at sleepmap.de>
+# Contributor: speps <speps dot aur dot archlinux dot org>
 
 pkgname=harvid
-pkgver=0.8.1
-pkgrel=2
+pkgver=0.8.2
+pkgrel=1
 pkgdesc="HTTP Ardour Video Daemon"
 arch=('x86_64')
-url="http://x42.github.io/harvid/"
+url="https://x42.github.io/harvid/"
 license=('GPL')
-depends=('ffmpeg')
+depends=('ffmpeg' 'libpng' 'libjpeg-turbo' 'xxd')
 source=("$pkgname-$pkgver.tar.gz::https://github.com/x42/harvid/archive/v$pkgver.tar.gz")
-md5sums=('a4ba437cc1895a5a47702f0188981ea2')
+sha512sums=('fde352124008cd3d6230950c79a3a2b8d581803f952c7313c941226b00e80f8078053d941f2c5ead04672639a8db696f0c33482f69dab78187801d7ebce23fce')
 
 build() {
-  cd $pkgname-$pkgver
-
-  # prevent GNU executable stack
-  CFLAGS+=" -Wl,-znoexecstack"
+  cd "${pkgname}-${pkgver}"
+  # different job setting needed to not crash build
   make PREFIX=/usr -j1
 }
 
 package() {
-  cd $pkgname-$pkgver
-  make PREFIX=/usr DESTDIR="$pkgdir/" install
+  cd "${pkgname}-${pkgver}"
+  make PREFIX=/usr DESTDIR="${pkgdir}/" install
 
   # ffmpeg and ffprobe symlinks (for ardour)
-  ln -s ffmpeg "$pkgdir/usr/bin/ffmpeg_harvid"
-  ln -s ffprobe "$pkgdir/usr/bin/ffprobe_harvid"
+  ln -s ffmpeg "${pkgdir}/usr/bin/ffmpeg_harvid"
+  ln -s ffprobe "${pkgdir}/usr/bin/ffprobe_harvid"
 
-  # doc
   install -Dm644 README.md \
-    "$pkgdir/usr/share/doc/$pkgname/README"
+    "${pkgdir}/usr/share/doc/${pkgname}/README"
 }



More information about the arch-commits mailing list