summaryrefslogtreecommitdiff
path: root/aur
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2016-02-02 00:11:33 +0200
committerYuval Adam <yuval@y3xz.com>2016-02-02 00:11:33 +0200
commitb42d9a9594f1f9869db87a7b74dbfc12a4525115 (patch)
tree1f208aec51d4d2e0650fb4304b02cc7af5198b1b /aur
parentf9dba363b6e31c8ad2445f5c0b4069645f264e9f (diff)
parent0726757aa8679f6fa91ef47ac08e8a0f28f8b637 (diff)
Add 'aur/openbr-git/' from commit '0726757aa8679f6fa91ef47ac08e8a0f28f8b637'
git-subtree-dir: aur/openbr-git git-subtree-mainline: f9dba363b6e31c8ad2445f5c0b4069645f264e9f git-subtree-split: 0726757aa8679f6fa91ef47ac08e8a0f28f8b637
Diffstat (limited to 'aur')
-rw-r--r--aur/openbr-git/.AURINFO17
-rw-r--r--aur/openbr-git/.SRCINFO18
-rw-r--r--aur/openbr-git/PKGBUILD41
3 files changed, 76 insertions, 0 deletions
diff --git a/aur/openbr-git/.AURINFO b/aur/openbr-git/.AURINFO
new file mode 100644
index 0000000..e53e8d8
--- /dev/null
+++ b/aur/openbr-git/.AURINFO
@@ -0,0 +1,17 @@
+pkgbase = openbr-git
+ pkgdesc = A communal biometrics framework supporting the development of open algorithms and reproducible evaluations.
+ pkgver = 20140903
+ pkgrel = 2
+ url = http://openbiometrics.org/
+ arch = any
+ license = Apache
+ makedepends = git
+ makedepends = cmake
+ depends = qt5-base
+ depends = qt5-svg
+ depends = opencv
+ provides = openbr
+ source = git+https://github.com/biometrics/openbr.git
+
+pkgname = openbr-git
+
diff --git a/aur/openbr-git/.SRCINFO b/aur/openbr-git/.SRCINFO
new file mode 100644
index 0000000..47b6d83
--- /dev/null
+++ b/aur/openbr-git/.SRCINFO
@@ -0,0 +1,18 @@
+pkgbase = openbr-git
+ pkgdesc = A communal biometrics framework supporting the development of open algorithms and reproducible evaluations.
+ pkgver = 20140903
+ pkgrel = 2
+ url = http://openbiometrics.org/
+ arch = any
+ license = Apache
+ makedepends = git
+ makedepends = cmake
+ depends = qt5-base
+ depends = qt5-svg
+ depends = opencv
+ provides = openbr
+ source = git+https://github.com/biometrics/openbr.git
+ md5sums = SKIP
+
+pkgname = openbr-git
+
diff --git a/aur/openbr-git/PKGBUILD b/aur/openbr-git/PKGBUILD
new file mode 100644
index 0000000..c32d69c
--- /dev/null
+++ b/aur/openbr-git/PKGBUILD
@@ -0,0 +1,41 @@
+# Maintainer: Yuval Adam <yuv dot adm at gmail dot com> PGP-Key: CC2115C12D99D2F0
+
+pkgname=openbr-git
+pkgver=20140903
+pkgrel=2
+pkgdesc="A communal biometrics framework supporting the development of open algorithms and reproducible evaluations."
+arch=('any')
+url="http://openbiometrics.org/"
+license=('Apache')
+depends=('qt5-base' 'qt5-svg' 'opencv')
+makedepends=('git' 'cmake')
+provides=('openbr')
+source=('git+https://github.com/biometrics/openbr.git')
+md5sums=('SKIP')
+_gitname=openbr
+
+pkgver() {
+ cd $_gitname
+ echo $(git describe --always | sed 's/-/./g')
+}
+
+build() {
+ cd $_gitname
+
+ msg "Pulling required submodules (might take some time...)"
+ git submodule init
+ git submodule update
+
+ mkdir build
+ cd build
+ cmake -DCMAKE_BUILD_TYPE=Release ../
+ make
+}
+
+package() {
+ cd $_gitname/build
+ make DESTDIR=${pkgdir} install
+}
+
+# vim:set ts=2 sw=2 et:
+