diff options
Diffstat (limited to 'community/matchbox-keyboard/PKGBUILD')
-rw-r--r-- | community/matchbox-keyboard/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/community/matchbox-keyboard/PKGBUILD b/community/matchbox-keyboard/PKGBUILD new file mode 100644 index 000000000..2651a9a99 --- /dev/null +++ b/community/matchbox-keyboard/PKGBUILD @@ -0,0 +1,21 @@ +# $Id: PKGBUILD 21416 2010-07-16 12:01:32Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: William Rea <sillywilly@gmail.com> + +pkgname=matchbox-keyboard +pkgver=0.1 +pkgrel=3 +pkgdesc="An on screen virtual keyboard" +arch=('i686' 'x86_64') +depends=('cairo' 'libfakekey' 'libxft') +url="http://projects.o-hand.com/matchbox" +license=('GPL') +source=(http://projects.o-hand.com/matchbox/sources/$pkgname/0.1/$pkgname-$pkgver.tar.gz) +md5sums=('9d1f61e0785f2ac4fc7588fa39b87e6f') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$pkgdir install +} |