Date: Saturday, September 19, 2015 @ 18:29:57
Author: foutrelis
Revision: 140944
archrelease: copy trunk to community-staging-any
Added:
python-pyparsing/repos/community-staging-any/
python-pyparsing/repos/community-staging-any/PKGBUILD
(from rev 140943, python-pyparsing/trunk/PKGBUILD)
----------+
PKGBUILD | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
Copied: python-pyparsing/repos/community-staging-any/PKGBUILD (from rev 140943,
python-pyparsing/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2015-09-19 16:29:57 UTC (rev 140944)
@@ -0,0 +1,27 @@
+# $Id$
+# Maintainer: Alexander Rødseth <[email protected]>
+# Contributor: Chris Brannon <[email protected]>
+# Contributor: Geoffroy Carrier <[email protected]>
+# Contributor: Arvid Ephraim Picciani <[email protected]>
+# Contributor: Michael Krauss <[email protected]>
+
+pkgname=python-pyparsing
+pkgver=2.0.3
+pkgrel=2
+pkgdesc='General parsing module for Python'
+arch=('any')
+url='http://pyparsing.wikispaces.com'
+license=('MIT')
+depends=('python')
+source=("http://downloads.sourceforge.net/pyparsing/pyparsing-$pkgver.tar.gz")
+sha256sums=('06e729e1cbf5274703b1f47b6135ed8335999d547f9d8cf048b210fb8ebf844f')
+
+package() {
+ cd "$srcdir/pyparsing-$pkgver"
+
+ rm -rf build
+ python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et: