updated on Thu Jan 5 13:17:10 UTC 2012
[aur-mirror.git] / fvkbd / PKGBUILD
blob472b37b12b8c3cde615e05fbde2e69b783d16dce
1 # Contributor: Feufochmar <feufochmar.gd@gmail.com>
2 pkgname=fvkbd
3 pkgver=0.2.2
4 pkgrel=2
5 pkgdesc="A free and flexible Virtual Keyboard aiming at providing fancy UI and easy to config layout"
6 arch=('i686' 'x86_64')
7 url="http://gitorious.org/fvkbd/pages/Home"
8 license=('LGPL')
9 depends=('gtk2' 'libxml2' 'libfakekey')
10 makedepends=('git')
11 source=( http://gitorious.org/$pkgname/$pkgname/archive-tarball/$pkgver )
13 build() {
14   cd $srcdir/fvkbd-fvkbd
15   # remove the -Werror flag
16   # there are some variables not used as we don't compile with debug support
17   find * -name "Makefile.am" | xargs grep -l Werror | xargs sed -i s/-Werror//g
18   #
19   ./autogen.sh
20   ./configure --prefix=/usr --sysconfdir=/etc
21   
22   make
25 package() {
26   cd $srcdir/fvkbd-fvkbd
27   make DESTDIR=$pkgdir install
29 md5sums=('d2d74b30746d4c78b65756d1c0b5f3d7')