mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 17:22:07 +01:00
38 lines
805 B
Plaintext
38 lines
805 B
Plaintext
# Maintainer: Leonardo Arena <rnalrd@alpinelinux.org>
|
|
pkgname=py-simpleparse
|
|
_realname=SimpleParse
|
|
pkgver=2.1.1
|
|
pkgrel=1
|
|
pkgdesc="Python library providing simple and fast parser generator"
|
|
url="http://launchpad.net/simpleparse"
|
|
arch="all"
|
|
license="BSD"
|
|
depends="python"
|
|
depends_dev="python-dev"
|
|
makedepends="$depends_dev"
|
|
install=
|
|
subpackages=
|
|
source="http://pypi.python.org/packages/source/S/$_realname/$_realname-$pkgver.zip
|
|
py-simpleparse-eols.patch"
|
|
|
|
|
|
_builddir="$srcdir"/$_realname-$pkgver
|
|
|
|
prepare() {
|
|
cd "$_builddir"
|
|
return 0
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python setup.py build
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --skip-build --root="$pkgdir"
|
|
}
|
|
|
|
md5sums="e58600b0db786664855cbd49dbc0e4e5 SimpleParse-2.1.1.zip
|
|
b980d7400e2d5a97769330c5c2d927b3 py-simpleparse-eols.patch"
|