aboutsummaryrefslogtreecommitdiffstats
path: root/testing/py3-pylev/APKBUILD
blob: 9de032c32e091cb80ea84a4b7f08b5d6e381b739 (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
# Contributor: Leo <thinkabit.ukim@gmail.com>
# Maintainer: Leo <thinkabit.ukim@gmail.com>
pkgname=py3-pylev
_realname=pylev
pkgver=1.3.0
pkgrel=1
pkgdesc="Pure Python3 Levenshtein implementation"
options="!check" # No tests on pypi, no tags on github
url="https://github.com/toastdriven/pylev"
arch="noarch"
license="BSD-3-Clause"
depends="python3"
makedepends="py3-setuptools"
source="https://files.pythonhosted.org/packages/source/${_realname:0:1}/$_realname/$_realname-$pkgver.tar.gz"
builddir="$srcdir/$_realname-$pkgver"

build() {
	python3 setup.py build
}

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

sha512sums="096831d55dda5606544bce03c18542b0331c38feb538dd37c67cc2e9b2111d381632669ee2dcd3d7dc9a87d284892371ded1c322d0edc61f529152c282556f4c  pylev-1.3.0.tar.gz"