summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorFabian Maurer2017-06-09 03:10:14 +0200
committerFabian Maurer2017-06-09 03:10:14 +0200
commitc933a3b95343c2d49ca920e8fb83eab9c12c1046 (patch)
tree72ebe2e64d94214ce9476c7872906bda8866eb37
parent3e221a5a151ade9c0db1ec6445289ae85333a289 (diff)
downloadaur-c933a3b95343c2d49ca920e8fb83eab9c12c1046.tar.gz
Took ownership and fixed compilation
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD8
2 files changed, 5 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 8df34bad04a3..8000d1944e2b 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = libphash
pkgdesc = Perceptual hashing library
pkgver = 0.9.6
- pkgrel = 1
+ pkgrel = 2
url = http://phash.org/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 4073183f4225..de697ccf5516 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,9 +1,8 @@
-# Maintainer: Arthur Zamarin <arthurzam@gmail.com>
-
+# Maintainer: Fabian Maurer <dark.shadow4@web.de>
pkgname=libphash
_pkgname=pHash
pkgver=0.9.6
-pkgrel=1
+pkgrel=2
pkgdesc="Perceptual hashing library"
arch=(i686 x86_64)
url="http://phash.org/"
@@ -14,7 +13,8 @@ sha256sums=('3c8258a014f9c2491fb1153010984606805638a45d00498864968a9a30102935')
prepare() {
cd "$srcdir/$_pkgname-$pkgver"
- ./configure --prefix=/usr
+ #Video support is broken due to ffmpeg being too old and pHash doesn't link pthread directly
+ LIBS="-lpthread" ./configure --enable-video-hash=no --prefix=/usr
}
build() {