summaryrefslogtreecommitdiff
path: root/pcr/python-pelican
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-pelican
parenta8fda0029cf05c750fa2f1d851e5029dcd684de4 (diff)
python-pelican and dependencies.
All these packages support python2 while they are built with python only here.
Diffstat (limited to 'pcr/python-pelican')
-rw-r--r--pcr/python-pelican/PKGBUILD20
1 files changed, 20 insertions, 0 deletions
diff --git a/pcr/python-pelican/PKGBUILD b/pcr/python-pelican/PKGBUILD
new file mode 100644
index 000000000..6d250a014
--- /dev/null
+++ b/pcr/python-pelican/PKGBUILD
@@ -0,0 +1,20 @@
+pkgname=python-pelican
+pkgver=3.2.2
+pkgrel=1
+pkgdesc="Static blog generator"
+arch=("any")
+url="http://getpelican.com/"
+license=('AGPL3')
+depends=('python' 'python-feedgenerator' 'python-jinja' 'python-pygments'
+ 'python-docutils' 'python-pytz' 'python-blinker' 'python-unidecode'
+ 'python-six' 'python-distribute')
+options=(!emptydirs)
+source=("https://pypi.python.org/packages/source/p/pelican/pelican-$pkgver.tar.gz")
+md5sums=('cf9af2669dbd84c3e83b546b70b1a78c')
+
+package() {
+ cd "$srcdir/pelican-$pkgver"
+ python setup.py install --root="$pkgdir/" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et: