summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2019-02-08 20:46:23 +0100
committerAndreas Grapentin <andreas@grapentin.org>2019-02-08 20:46:23 +0100
commitef5658ff319cd41bd56e10bd6496a05aae71d897 (patch)
tree6a03b7e18c87c8206d39a5a2a5f3ffd60167a254
parent0b8287973bdd4c4b6fa1a6d181fb2a179e6f41f1 (diff)
pcr/alpm_octopi_utils: added as dependency of octopi
-rw-r--r--pcr/alpm_octopi_utils/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/pcr/alpm_octopi_utils/PKGBUILD b/pcr/alpm_octopi_utils/PKGBUILD
new file mode 100644
index 000000000..b8d4ed138
--- /dev/null
+++ b/pcr/alpm_octopi_utils/PKGBUILD
@@ -0,0 +1,28 @@
+# Maintainer (AUR): Stephan Springer <buzo+arch@Lini.de>
+# Contributor (AUR): kikadf <kikadf.01@gmail.com>
+
+pkgname=alpm_octopi_utils
+pkgver=1.0.0
+_commit=7f3a6c7e0e46bf9acb54af472f4fe45ab632d58c
+pkgrel=2
+pkgdesc="Alpm utils for Octopi"
+url="https://octopiproject.wordpress.com/"
+arch=('i686' 'x86_64')
+arch+=('armv7h')
+license=('GPL3')
+depends=('pacman')
+makedepends=('vala')
+source=("https://github.com/aarnt/${pkgname}/archive/${_commit}.zip")
+sha256sums=('1be08455e2845fc03f4e4f3010e11c6946fb6dae7d0d9807c7ac5349dda04ba6')
+
+build() {
+ cd "$pkgname-$_commit"
+ make
+}
+
+package() {
+ cd "$pkgname-$_commit"
+ install -D -m755 src/libalpm_octopi_utils.so "$pkgdir"/usr/lib/libalpm_octopi_utils.so
+ install -D -m644 src/libalpm_octopi_utils.pc "$pkgdir"/usr/lib/pkgconfig/libalpm_octopi_utils.pc
+ install -D -m644 src/alpm_octopi_utils.h "$pkgdir"/usr/include/alpm_octopi_utils.h
+}