summaryrefslogtreecommitdiff
path: root/pcr/python-blinker
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-07-15 16:36:21 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2013-07-15 16:36:21 +0200
commit866bb68b76d33f76c487c54befe13ede5d9b2040 (patch)
treedba64bc8c2a0dbe6d11275c5fdff328ec21cd8cd /pcr/python-blinker
parenta8fda0029cf05c750fa2f1d851e5029dcd684de4 (diff)
downloadabslibre-866bb68b76d33f76c487c54befe13ede5d9b2040.tar.gz
abslibre-866bb68b76d33f76c487c54befe13ede5d9b2040.tar.bz2
abslibre-866bb68b76d33f76c487c54befe13ede5d9b2040.zip
python-pelican and dependencies.
All these packages support python2 while they are built with python only here.
Diffstat (limited to 'pcr/python-blinker')
-rw-r--r--pcr/python-blinker/PKGBUILD19
1 files changed, 19 insertions, 0 deletions
diff --git a/pcr/python-blinker/PKGBUILD b/pcr/python-blinker/PKGBUILD
new file mode 100644
index 000000000..00dc3cdad
--- /dev/null
+++ b/pcr/python-blinker/PKGBUILD
@@ -0,0 +1,19 @@
+pkgname=python-blinker
+pkgver=1.3
+pkgrel=1
+pkgdesc="Fast, simple object-to-object and broadcast signaling"
+arch=("any")
+url="http://pythonhosted.org/blinker/"
+license=('custom')
+depends=('python')
+options=(!emptydirs)
+source=("https://pypi.python.org/packages/source/b/blinker/blinker-$pkgver.tar.gz")
+md5sums=('66e9688f2d287593a0e698cd8a5fbc57')
+
+package() {
+ cd "$srcdir/blinker-$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: