mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-13 20:02:24 +01:00
41 lines
1.1 KiB
Plaintext
41 lines
1.1 KiB
Plaintext
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=py-parsing
|
|
pkgver=2.0.1
|
|
pkgrel=0
|
|
pkgdesc="An object-oriented approach to text processing"
|
|
url="http://pyparsing.wikispaces.com/"
|
|
arch="noarch"
|
|
license="MIT"
|
|
depends="python"
|
|
depends_dev=""
|
|
makedepends="python-dev py-setuptools"
|
|
install=""
|
|
subpackages=""
|
|
source="http://downloads.sourceforge.net/pyparsing/pyparsing-$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/pyparsing-$pkgver
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
python setup.py build || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
python setup.py install --prefix=/usr --root="$pkgdir" || return 1
|
|
}
|
|
|
|
md5sums="37adec94104b98591507218bc82e7c31 pyparsing-2.0.1.tar.gz"
|
|
sha256sums="0007cd3f008eba4a203f1f6b4b133ddc352552c8808b694c88c23db56416e4e4 pyparsing-2.0.1.tar.gz"
|
|
sha512sums="e9c9307c59c7020f4a454458703bd1eb4ef0ac513b2a6a07706b5d676c010f33a72d03d78a61bf3daa96d6598b966a3e4921a88c50f71939a697fa00377ac67a pyparsing-2.0.1.tar.gz"
|