summaryrefslogtreecommitdiff
path: root/pcr/pelican
diff options
context:
space:
mode:
authorOmar Vega Ramos <ovruni@gnu.org.pe>2015-11-06 01:04:50 -0500
committerOmar Vega Ramos <ovruni@gnu.org.pe>2015-11-06 01:04:50 -0500
commit9037c7389f6085ee098ab0c87316d659e6409252 (patch)
tree30853902e4b9453b9e12a375b09f775a1643d090 /pcr/pelican
parent9ed25fd1c3938818010ad0bd01e673c84c4bfc0d (diff)
downloadabslibre-9037c7389f6085ee098ab0c87316d659e6409252.tar.gz
abslibre-9037c7389f6085ee098ab0c87316d659e6409252.tar.bz2
abslibre-9037c7389f6085ee098ab0c87316d659e6409252.zip
pelican-3.6.3-3: updating version
Diffstat (limited to 'pcr/pelican')
-rw-r--r--pcr/pelican/PKGBUILD49
1 files changed, 49 insertions, 0 deletions
diff --git a/pcr/pelican/PKGBUILD b/pcr/pelican/PKGBUILD
new file mode 100644
index 000000000..5b5ee703f
--- /dev/null
+++ b/pcr/pelican/PKGBUILD
@@ -0,0 +1,49 @@
+# Maintainer (Arch): Stefan Tatschner <rumpelsepp@sevenbyte.org>
+# Contributor (Arch): David Runge <dave@sleepmap.de>
+# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
+
+pkgname=pelican
+pkgver=3.6.3
+pkgrel=3
+pkgdesc="A tool to generate a static blog, with restructured text (or markdown) input files."
+arch=('any')
+url="http://getpelican.com"
+license=('AGPL3')
+makedepends=('python-sphinx' 'python-blinker')
+depends=('python-jinja' 'python-pygments' 'python-feedgenerator' 'python-pytz'
+ 'python-docutils' 'python-blinker' 'python-unidecode' 'python-six'
+ 'python-dateutil')
+optdepends=('python-markdown: Markdown support'
+ 'asciidoc: AsciiDoc support'
+ 'python-beautifulsoup4: importing from wordpress/dotclear/posterous'
+ 'python-feedparser: importing from feeds'
+ 'python-rst2pdf: PDF generation'
+ 'openssh: uploading through SSH'
+ 'rsync: uploading through rsync+SSH'
+ 'lftp: uploading through FTP'
+ 's3cmd: uploading through S3'
+ 'ghp-import: uploading through gh-pages'
+ 'python-typogrify: typographical enhancements'
+ 'python-mdx-video: easier embedding of youtube videos in markdown')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/getpelican/pelican/archive/$pkgver.tar.gz")
+replaces=("python-$pkgname")
+conflicts=("python-$pkgname")
+sha256sums=('d19bc7df61afc5b68eba028f0cf0832ee2a12a04a01d7fe11bdfdd847ddd417b')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver/docs/"
+ make man
+ make text
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ install -d "$pkgdir/usr/share/man/man1/"
+ install -Dm644 docs/_build/man/*.1 "$pkgdir/usr/share/man/man1/"
+
+ install -d "$pkgdir/usr/share/doc/pelican/"
+ install -Dm644 docs/_build/text/*.txt "$pkgdir/usr/share/doc/pelican/"
+
+ python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1
+}