mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-04 20:06:43 +02:00
testing/py-parsing: new aport
An object-oriented approach to text processing http://pyparsing.wikispaces.com/
This commit is contained in:
parent
bf145e534d
commit
7d59962978
38
testing/py-parsing/APKBUILD
Normal file
38
testing/py-parsing/APKBUILD
Normal file
@ -0,0 +1,38 @@
|
||||
# Contributor: Natanael Copa <ncopa@alpinelinux.org>
|
||||
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
||||
pkgname=py-parsing
|
||||
pkgver=1.5.6
|
||||
pkgrel=0
|
||||
pkgdesc="An object-oriented approach to text processing"
|
||||
url="http://pyparsing.wikispaces.com/"
|
||||
arch="noarch"
|
||||
license="MIT"
|
||||
depends=""
|
||||
depends_dev=""
|
||||
makedepends="$depends_dev"
|
||||
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="1e41cb219dae9fc353bd4cd47636b283 pyparsing-1.5.6.tar.gz"
|
||||
Loading…
x
Reference in New Issue
Block a user