diff options
author | Kiyoshi Aman <kiyoshi.aman+apkfission@gmail.com> | 2018-08-20 02:28:41 -0500 |
---|---|---|
committer | Kiyoshi Aman <kiyoshi.aman+apkfission@gmail.com> | 2018-08-20 02:30:30 -0500 |
commit | bcea27d86e36873e20bdbd57a8e27e9b9293debf (patch) | |
tree | b57b5487fe27748d3ae968e2cd2c06ad7cb7ec6c /user | |
parent | ca2162b4f808ed2f80b2867433ec745e23afabe8 (diff) | |
download | packages-bcea27d86e36873e20bdbd57a8e27e9b9293debf.tar.gz packages-bcea27d86e36873e20bdbd57a8e27e9b9293debf.tar.bz2 packages-bcea27d86e36873e20bdbd57a8e27e9b9293debf.tar.xz packages-bcea27d86e36873e20bdbd57a8e27e9b9293debf.zip |
user/py3-distutils-extra: new package
Diffstat (limited to 'user')
-rw-r--r-- | user/py3-distutils-extra/APKBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/user/py3-distutils-extra/APKBUILD b/user/py3-distutils-extra/APKBUILD new file mode 100644 index 000000000..188127baa --- /dev/null +++ b/user/py3-distutils-extra/APKBUILD @@ -0,0 +1,29 @@ +# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com> +pkgname=py3-distutils-extra +pkgver=2.39 +pkgrel=0 +pkgdesc="Python distutils extras for gettext, themed icons, and scrollkeepr docs" +url="https://launchpad.net/python-distutils-extra" +arch="noarch" +license="GPL-2.0-only" +depends="python3" +source="https://launchpad.net/python-distutils-extra/trunk/$pkgver/+download/python-distutils-extra-$pkgver.tar.gz" +sha512sums="e3b4d1ed22767fb4c6dbbdccef960865b6fda01d18dc38cb8f9357c09c7eabb78466fce053e407a196eca257d07d57c5c1ef47f358a5979c7f22e4b11775124e python-distutils-extra-2.39.tar.gz" +builddir="$srcdir/python-distutils-extra-$pkgver" + +build() { + cd "$builddir" + python3 setup.py build +} + +check() { + cd "$builddir" + python3 setup.py check +} + +package() { + cd "$builddir" + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + |