summaryrefslogtreecommitdiff
path: root/pcr/python-six/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/python-six/PKGBUILD')
-rw-r--r--pcr/python-six/PKGBUILD19
1 files changed, 19 insertions, 0 deletions
diff --git a/pcr/python-six/PKGBUILD b/pcr/python-six/PKGBUILD
new file mode 100644
index 000000000..fddeca460
--- /dev/null
+++ b/pcr/python-six/PKGBUILD
@@ -0,0 +1,19 @@
+pkgname=python-six
+pkgver=1.3.0
+pkgrel=1
+pkgdesc="Python 2 and 3 compatibility utilities"
+arch=("any")
+url="http://pypi.python.org/pypi/six/"
+license=('custom')
+depends=('python')
+options=(!emptydirs)
+source=("https://pypi.python.org/packages/source/s/six/six-$pkgver.tar.gz")
+md5sums=('ec47fe6070a8a64c802363d2c2b1e2ee')
+
+package() {
+ cd "$srcdir/six-$pkgver"
+ python setup.py install --root="$pkgdir/" --optimize=1
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# vim:set ts=2 sw=2 et: