mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-06 22:21:45 +01:00
27 lines
785 B
Plaintext
27 lines
785 B
Plaintext
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
pkgname=py3-simpleparse
|
|
_pkgname=SimpleParse
|
|
pkgver=2.2.0
|
|
pkgrel=1
|
|
pkgdesc="Python library providing simple and fast parser generator"
|
|
url="https://launchpad.net/simpleparse"
|
|
arch="all"
|
|
license="eGenix ISC"
|
|
depends="python3"
|
|
makedepends="python3-dev"
|
|
options="!check" # no test suite
|
|
source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.zip"
|
|
builddir="$srcdir"/$_pkgname-$pkgver
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
python3 setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python3 setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="90956843384739b52a0dc5397633f089c519b4acf922ad953dba49686a4e2c243f8bff6586c1f54c84cdef0c9555fbf6681c41ca70a4bf0f716f2892ae913b0e SimpleParse-2.2.0.zip"
|