diff options
author | Jonathan Queiroz | 2017-09-27 17:18:24 -0300 |
---|---|---|
committer | Jonathan Queiroz | 2017-09-27 17:18:24 -0300 |
commit | c7dbb13693a3eead0e06dbf1afec4c87d4abc78f (patch) | |
tree | d14dbf8e44f45389cefe9d54dcab20e5ae4ed1f7 /PKGBUILD | |
download | aur-c7dbb13693a3eead0e06dbf1afec4c87d4abc78f.tar.gz |
Initial commit
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..1f2c056787bb --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,20 @@ +# Maintainer: johnjq <dev [at] johnjq (dot) com> + +pkgname=python-uinput +pkgver=0.11.2 +pkgrel=1 +pkgdesc="Pythonic API to Linux uinput kernel module" +arch=("any") +url="https://github.com/tuomaanen/python-uinput" +license=("GPL") +depends=("python") +makedepends=("python-setuptools") +options=("!emptydirs") +source=("https://codeload.github.com/tuomasjjrasanen/python-uinput/tar.gz/0.11.2") +sha512sums=("50fedc43fddbb690782196af6e9e9363f73d4ec65c7d356750db0ac846dfc7cf7f98d406aaa035684f1fe7f17e02679047cccd07c9c232d1bbdc2f1fc2a8d97e") + +package() { + cd "$srcdir/python-uinput-$pkgver" + python setup.py install --root="$pkgdir/" --optimize=1 + install -m 644 -D COPYING "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} |