diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-06-18 14:32:36 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-06-18 14:33:14 +0000 |
commit | 7d59962978a6587fac94aaa69a1ca28290feeef5 (patch) | |
tree | 3cf1d4ef6c1aad664a8d9867999fe2dcd27a6ec5 /testing/py-parsing | |
parent | bf145e534d6187dd0501d2b9ac876e081ae9553a (diff) | |
download | aports-7d59962978a6587fac94aaa69a1ca28290feeef5.tar.bz2 aports-7d59962978a6587fac94aaa69a1ca28290feeef5.tar.xz |
testing/py-parsing: new aport
An object-oriented approach to text processing
http://pyparsing.wikispaces.com/
Diffstat (limited to 'testing/py-parsing')
-rw-r--r-- | testing/py-parsing/APKBUILD | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/testing/py-parsing/APKBUILD b/testing/py-parsing/APKBUILD new file mode 100644 index 0000000000..fde0319e08 --- /dev/null +++ b/testing/py-parsing/APKBUILD @@ -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" |