summaryrefslogtreecommitdiff
path: root/aur/firestr-git/PKGBUILD
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2016-02-02 00:10:25 +0200
committerYuval Adam <yuval@y3xz.com>2016-02-02 00:10:25 +0200
commitab7d2a8553475e5fe1699cc904ba029fe7ccbca5 (patch)
treed10b5ee831b101fd54745c3dc55754e98c5c1f7f /aur/firestr-git/PKGBUILD
parent689681918b6b9921dbc55eea529b28012e3e404e (diff)
parentfaf1c7dfc9bf8e8c39f43caeb420333bd218eed3 (diff)
Add 'aur/firestr-git/' from commit 'faf1c7dfc9bf8e8c39f43caeb420333bd218eed3'
git-subtree-dir: aur/firestr-git git-subtree-mainline: 689681918b6b9921dbc55eea529b28012e3e404e git-subtree-split: faf1c7dfc9bf8e8c39f43caeb420333bd218eed3
Diffstat (limited to 'aur/firestr-git/PKGBUILD')
-rw-r--r--aur/firestr-git/PKGBUILD34
1 files changed, 34 insertions, 0 deletions
diff --git a/aur/firestr-git/PKGBUILD b/aur/firestr-git/PKGBUILD
new file mode 100644
index 0000000..753be8b
--- /dev/null
+++ b/aur/firestr-git/PKGBUILD
@@ -0,0 +1,34 @@
+# Maintainer: Yuval Adam <yuval at y3xz dot com> PGP-Key: 271386AA2EB7672F
+
+pkgname=firestr-git
+pkgver=7f47d2b
+pkgrel=1
+pkgdesc="The grass computing platform"
+arch=('any')
+url="https://github.com/mempko/firestr"
+license=(GPL)
+makedepends=('gcc' 'qt5-base' 'qt5-multimedia' 'boost' 'botan-1.10' 'opus' 'snappy' 'openssl' 'gmp')
+provides=('firestr')
+source=("$pkgname::git+$url")
+sha1sums=('SKIP')
+
+pkgver() {
+ cd "$pkgname"
+ echo $(git describe --always | sed 's/-/./g')
+}
+
+build() {
+ cd "$pkgname"
+ mkdir build
+ cd build
+ cmake -DCMAKE_INSTALL_PREFIX=/usr ..
+ make
+}
+
+package() {
+ cd "$pkgname"
+ cd build
+ make DESTDIR=${pkgdir} install
+}
+
+# vim:set ts=2 sw=2 et: