diff options
author | Leonardo Arena <rnalrd@alpinelinux.org> | 2019-06-10 14:42:32 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2019-06-11 06:02:18 +0000 |
commit | 7f3533e7423d9f8e56408d338c8e9313e724b6ba (patch) | |
tree | eb22ad0af07c2f01fd0184a86778e986cd22af22 /community/py3-lupa | |
parent | f5f15e65aacbd6a60be0dc37446f67b2b628fd61 (diff) | |
download | aports-7f3533e7423d9f8e56408d338c8e9313e724b6ba.tar.bz2 aports-7f3533e7423d9f8e56408d338c8e9313e724b6ba.tar.xz |
community/py3-lupa: moved from testing
Diffstat (limited to 'community/py3-lupa')
-rw-r--r-- | community/py3-lupa/APKBUILD | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/community/py3-lupa/APKBUILD b/community/py3-lupa/APKBUILD new file mode 100644 index 0000000000..2e5a746a33 --- /dev/null +++ b/community/py3-lupa/APKBUILD @@ -0,0 +1,24 @@ +# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org> +pkgname=py3-lupa +_pkgname=${pkgname#py3-} +pkgver=1.8 +pkgrel=1 +pkgdesc="Python wrapper around Lua and LuaJIT" +url="https://pypi.org/project/lupa/" +arch="all" +license="MIT" +makedepends="python3-dev" +depends="python3" +source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" +options="!check" # no test suite +builddir="$srcdir"/$_pkgname-$pkgver + +build() { + python3 setup.py build +} + +package() { + python3 setup.py install --prefix=/usr --root="$pkgdir" +} + +sha512sums="322da16f11e5f2a76c39d3ebf3582b517b798df6bfd87f0e08038f1c5b180279a59cdf0688e5ec86ab50a7732d6ab4767e0798f6b864654a247767fad6bf56dd py3-lupa-1.8.tar.gz" |