summaryrefslogtreecommitdiff
path: root/pcr/geis
diff options
context:
space:
mode:
authorAndreas Grapentin <andreas@grapentin.org>2018-01-21 13:01:30 +0100
committerAndreas Grapentin <andreas@grapentin.org>2018-01-21 13:01:30 +0100
commit94b357bfcc594ac64c5a51af68fbb2d5bb8f64c9 (patch)
tree31bdc31ef0fc2a6462ab9b6a4fef1401a4e8465b /pcr/geis
parentbb82d621d55d61f04869d47b92f608276e7fa1f9 (diff)
pcr/geis: updated to 2.2.17
Diffstat (limited to 'pcr/geis')
-rw-r--r--pcr/geis/PKGBUILD29
1 files changed, 18 insertions, 11 deletions
diff --git a/pcr/geis/PKGBUILD b/pcr/geis/PKGBUILD
index 655a60338..18d06141f 100644
--- a/pcr/geis/PKGBUILD
+++ b/pcr/geis/PKGBUILD
@@ -1,11 +1,14 @@
-# Maintainer (Arch): Nicolas Quiénot <niQo @ AUR >
-# Contributor (Arch): Xiao-Long Chen <chenxiaolong@cxl.epac.to>
+# Maintainer (AUR): Nicolas Quiénot <niQo @ AUR >
+# Contributor (AUR): Xiao-Long Chen <chenxiaolong@cxl.epac.to>
+
+# parabola changes and rationale:
+# no changes.
pkgname=geis
-pkgver=2.2.15
-pkgrel=3
+pkgver=2.2.17
+pkgrel=2
pkgdesc="Implementation of the GEIS (Gesture Engine Interface and Support) interface."
-arch=('i686' 'x86_64')
+arch=('i686' 'x86_64' 'armv7h')
url="https://launchpad.net/geis"
license=('GPL' 'LGPL')
depends=('grail' 'dbus' 'python-gobject')
@@ -14,20 +17,24 @@ provides=('utouch-geis')
conflicts=('utouch-geis')
replaces=('utouch-geis')
options=('!emptydirs' '!libtool')
-source=("http://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz")
+source=("http://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.xz")
+md5sums=('2ff9d76a3ea5794516bb02c9d1924faf')
+
+
+prepare() {
+ cd "$pkgname-$pkgver"
+}
build() {
- cd "$srcdir/$pkgname-$pkgver"
+ cd "$pkgname-$pkgver"
## add -Wno-format in CFLAGS see FS#34658
- CFLAGS="$CFLAGS -Wno-format" ./configure --prefix=/usr --disable-static
+ CFLAGS="$CFLAGS -Wno-format -Wno-misleading-indentation -Wno-error" ./configure --prefix=/usr --disable-static
make
}
package() {
- cd "$srcdir/$pkgname-$pkgver"
-
+ cd "$pkgname-$pkgver"
make DESTDIR="${pkgdir}/" install
}
-md5sums=('94c8a08497f5fc22061fb0573ca1e220')