summaryrefslogtreecommitdiff
path: root/pcr/geis/PKGBUILD
blob: e757906ca541dcb84ad6d1fab491ae9a71728be4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# 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.17
pkgrel=3
pkgdesc="Implementation of the GEIS (Gesture Engine Interface and Support) interface."
arch=('i686' 'x86_64' 'armv7h')
url="https://launchpad.net/geis"
license=('GPL' 'LGPL')
depends=('grail' 'dbus' 'python-gobject')
makedepends=('xorg-server-devel' 'pixman')
provides=('utouch-geis')
conflicts=('utouch-geis')
replaces=('utouch-geis')
options=('!emptydirs' '!libtool')
source=("http://launchpad.net/${pkgname}/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.xz")
md5sums=('2ff9d76a3ea5794516bb02c9d1924faf')


prepare() {
    cd "$pkgname-$pkgver"
}

build() {
  cd "$pkgname-$pkgver"

  ## add -Wno-format in CFLAGS see FS#34658
  CFLAGS="$CFLAGS -Wno-format -Wno-misleading-indentation -Wno-error" ./configure --prefix=/usr --disable-static
  make 
}

package() {
  cd "$pkgname-$pkgver"
  make DESTDIR="${pkgdir}/" install
}