diff options
-rw-r--r-- | community/py3-pep517/APKBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/py3-pep517/APKBUILD b/community/py3-pep517/APKBUILD new file mode 100644 index 0000000000..2f53344e06 --- /dev/null +++ b/community/py3-pep517/APKBUILD @@ -0,0 +1,24 @@ +# Contributor: Leo <thinkabit.ukim@gmail.com> +# Maintainer: Leo <thinkabit.ukim@gmail.com> +pkgname=py3-pep517 +pkgver=0.8.1 +pkgrel=0 +pkgdesc="Wrappers to build python3 packgaes with PEP 517 hooks" +options="!check" # Requires testpath +url="https://github.com/takluyver/pep517" +arch="noarch" +license="MIT" +depends="python3 py3-pytoml" +makedepends="py3-setuptools" +source="https://pypi.io/packages/source/p/pep517/pep517-$pkgver.tar.gz" +builddir="$srcdir/pep517-$pkgver" + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --root="$pkgdir" +} + +sha512sums="72227734e9216b437a618abbcc2eb1795914915c2ddad31f344465f1fb24d66a345cbdab3ee5f7c8e740ddb3a75c9217ea90a950c4b5f123cce9cf7b15e560ba pep517-0.8.1.tar.gz" |