From a11913e86e250d0969676bcb4cf34386addacf8a Mon Sep 17 00:00:00 2001 From: Alex Tharp Date: Tue, 8 Mar 2022 02:23:00 -0500 Subject: [PATCH] feat: python3-keybinder --- README.md | 1 + python3-keybinder/PKGBUILD | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 python3-keybinder/PKGBUILD diff --git a/README.md b/README.md index 878900e..c485a78 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,7 @@ Some neato [PKGBUILDs](https://wiki.archlinux.org/index.php/PKGBUILD) for [Arch * [firestorm-beta-bin](firestorm-beta-bin) - Provides beta releases for [Firestorm Viewer](https://www.firestormviewer.org/), a third-party viewer for [Second Life](https://secondlife.com/) and [OpenSim](http://opensimulator.org) grids. * [hifi-git](hifi-git) - Provides the [High Fidelity](https://highfidelity.io/) virtual world project (client and servers) * [polyvox-git](polyvox-git) - Provides the [PolyVox](http://www.volumesoffun.com/polyvox-about/) library, intended for storing, manipulating, and displaying volumetric representations of objects +* [python3-keybinder](python3-keybinder) - Provides the unmaintained [python3-keybinder](https://pypi.org/project/python3-keybinder/) library, a global keybinding library for X * [foobar2000-component-audioscrobbler-bin](foobar2000-component-audioscrobbler-bin) - Provides [foo_audioscrobbler](http://www.foobar2000.org/components/view/foo_audioscrobbler), a [Last.fm/Audioscrobbler](https://www.last.fm/) component for [foobar2000](https://www.foobar2000.org/) * [foobnix](foobnix) + [foobnix-git](foobnix-git) - Provides [Foobnix](http://foobnix.com), a lightweight and functional music player for Linux built with GTK+ and Python 3 * [hiri](hiri) - Provides [Hiri](https://www.hiri.com/), a cross-platform, [Exchange](https://en.wikipedia.org/wiki/Microsoft_Exchange_Server)-ready email client aiming to replace [Outlook](https://en.wikipedia.org/wiki/Microsoft_Outlook) diff --git a/python3-keybinder/PKGBUILD b/python3-keybinder/PKGBUILD new file mode 100644 index 0000000..906eb01 --- /dev/null +++ b/python3-keybinder/PKGBUILD @@ -0,0 +1,17 @@ +# Maintainer: Alex Tharp + +pkgname=python3-keybinder +pkgver=1.1.2 +pkgrel=3 +pkgdesc='Python 3 global keybinding library for X.' +arch=(any) +url='https://github.com/LiuLang/python3-keybinder' +license=('GPLv3') +depends=('python-xlib') +source=(https://pypi.python.org/packages/source/p/${pkgname}/${pkgname}-${pkgver}.tar.gz) +sha256sums=('4ba45929a597a3fb623ea33e4fca1300ed1de2da917325a82b9b5f46504e8e4f') + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + python setup.py install --prefix=/usr --root="$pkgdir" +}