diff options
author | Michał Masłowski <mtjm@mtjm.eu> | 2013-07-15 16:36:21 +0200 |
---|---|---|
committer | Michał Masłowski <mtjm@mtjm.eu> | 2013-07-15 16:36:21 +0200 |
commit | 866bb68b76d33f76c487c54befe13ede5d9b2040 (patch) | |
tree | dba64bc8c2a0dbe6d11275c5fdff328ec21cd8cd /pcr/python-blinker | |
parent | a8fda0029cf05c750fa2f1d851e5029dcd684de4 (diff) |
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/PKGBUILD | 19 |
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: |