mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-13 11:19:50 +03:00
28 lines
833 B
Text
28 lines
833 B
Text
# Contributor: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
|
|
# Maintainer: Iztok Fister, Jr. <iztok@iztok-jr-fister.eu>
|
|
pkgname=py3-batalgorithm
|
|
_pkgorig=BatAlgorithm
|
|
pkgver=0.3.1
|
|
pkgrel=0
|
|
pkgdesc="Implementation of Bat Algorithm in Python"
|
|
options="!check" # no tests
|
|
url="https://github.com/buma/BatAlgorithm"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python3"
|
|
makedepends="py3-setuptools"
|
|
source="$pkgname-$pkgver.tar.gz::https://files.pythonhosted.org/packages/source/B/BatAlgorithm/BatAlgorithm-$pkgver.tar.gz"
|
|
builddir="$srcdir/$_pkgorig-$pkgver"
|
|
|
|
build() {
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
|
|
sha512sums="
|
|
bef691a55df0cfa99d09162c4ef669fe71714bb2d76f4adabad97d95a5222419a14e36b824d1d2be28c31857a2b84c655aa8583afc8d90d23eb3e9e57414baaf py3-batalgorithm-0.3.1.tar.gz
|
|
"
|