diff options
author | root <root@rshg054.dnsready.net> | 2012-05-12 00:02:41 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-05-12 00:02:41 +0000 |
commit | e1da03cf5ba92abee0e3afd9dc4cef438ebf96c7 (patch) | |
tree | 233b060ecee707d77b6c0d3d91de90eb4beed13e /community/python2-virtkey/PKGBUILD | |
parent | 2ced64d6aa5881fa575de1861c464c432deee26f (diff) |
Sat May 12 00:02:41 UTC 2012
Diffstat (limited to 'community/python2-virtkey/PKGBUILD')
-rw-r--r-- | community/python2-virtkey/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/python2-virtkey/PKGBUILD b/community/python2-virtkey/PKGBUILD new file mode 100644 index 000000000..237f64857 --- /dev/null +++ b/community/python2-virtkey/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: Balló György <ballogyor+arch at gmail dot com> +# Contributor: codl <codl@aquageek.net> +# Contributor: Megamixman <Megamixman@gmail.com> + +pkgname=python2-virtkey +_pkgname=python-virtkey +pkgver=0.60.0 +pkgrel=3 +pkgdesc="Python extension for emulating keypresses and getting layout information from the X server" +arch=('i686' 'x86_64') +url="https://launchpad.net/python-virtkey" +license=('LGPL') +depends=('python2' 'libxtst' 'gtk2') +replaces=('python-virtkey') +provides=('python-virtkey') +source=(http://launchpad.net/$_pkgname/${pkgver%.*}/$pkgver/+download/$_pkgname-$pkgver.tar.gz) +md5sums=('f4f6776f379bc635a29eac83a14fdde5') + +build() { + cd "$srcdir/$_pkgname-$pkgver" + + python2 setup.py build +} + +package() { + cd "$srcdir/$_pkgname-$pkgver" + + python2 setup.py install --root=$pkgdir/ --optimize=1 +} |