diff options
author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-11-12 01:30:03 +0100 |
---|---|---|
committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2020-11-12 01:30:03 +0100 |
commit | 29d475be9c29a371531f68c51ec60754b890f117 (patch) | |
tree | 80db8ad05995dbd6d69667b5e1c375876f11d411 /pcr/python-humblewx | |
parent | 84529e563065efdc669e43d8e3653779588e3562 (diff) | |
download | abslibre-29d475be9c29a371531f68c51ec60754b890f117.tar.gz abslibre-29d475be9c29a371531f68c51ec60754b890f117.tar.bz2 abslibre-29d475be9c29a371531f68c51ec60754b890f117.zip |
pcr: add python-humblewx
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr/python-humblewx')
-rw-r--r-- | pcr/python-humblewx/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/pcr/python-humblewx/PKGBUILD b/pcr/python-humblewx/PKGBUILD new file mode 100644 index 000000000..c98eac7ff --- /dev/null +++ b/pcr/python-humblewx/PKGBUILD @@ -0,0 +1,23 @@ +#Maintainer (AUR): Thibaud Kehler <thibaud.kehler at gmx dot net> +pkgname='python-humblewx' +_module='humblewx' +pkgver='0.2.1' +pkgrel=1 +pkgdesc="Library that simplifies creating user interfaces with wxPython." +license=('GPL3') +url="https://github.com/thetimelineproj/humblewx" +arch=('any') +depends=('python') +makedepends=('python-setuptools') +source=("https://files.pythonhosted.org/packages/source/h/${_module}/${_module}-${pkgver}.tar.gz") +md5sums=('1d3b30936aecf7570565a73878ed7f73') + +build() { + cd "${srcdir}/${_module}-${pkgver}" + python setup.py build +} + +package() { + cd "${srcdir}/${_module}-${pkgver}" + python setup.py install --root="${pkgdir}" --optimize=1 --skip-build +} |