aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-luhn/APKBUILD
blob: 4aed41d191707cab29de18584ecbb4a9d4dcd6e1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Maintainer: 
pkgname=py3-luhn
_pkgname=luhn
pkgver=0.2.0
pkgrel=1
pkgdesc="generate and validate luhn check digits"
url="https://pypi.python.org/pypi/luhn/"
arch="noarch"
license="BSD"
depends="py3-amqp"
makedepends="py3-setuptools"
install=""
source="https://files.pythonhosted.org/packages/source/l/luhn/luhn-$pkgver.tar.gz"
builddir="$srcdir/luhn-$pkgver"

replaces="py-luhn" # Backwards compatibility
provides="py-luhn=$pkgver-r$pkgrel" # Backwards compatibility

build() {
	cd "$_builddir"
	python3 setup.py build
}

package() {
        cd "$builddir"
        python3 setup.py install --prefix=/usr --root="$pkgdir"
}

sha512sums="81c5be3ae22069f409098ad3c333e90514cfd1dd351974cabfd03981790e408bd65129f46b1a05dc9411d566c4a9ceb62b0942a276a1bb561c3b3282685b46f7  luhn-0.2.0.tar.gz"