diff options
author | root <root@rshg054.dnsready.net> | 2011-10-18 23:14:49 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-10-18 23:14:49 +0000 |
commit | 791dde5091677cd6370690f9df9fb7cbdcfe0968 (patch) | |
tree | 44b8403e7782995a56c22f0fdacd13b227667bb1 /community/python2-cheetah | |
parent | c4f201fd7208805c7ee00e0ee833d3cc505898ac (diff) |
Tue Oct 18 23:14:48 UTC 2011
Diffstat (limited to 'community/python2-cheetah')
-rwxr-xr-x | community/python2-cheetah/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community/python2-cheetah/PKGBUILD b/community/python2-cheetah/PKGBUILD new file mode 100755 index 000000000..24ba9e35d --- /dev/null +++ b/community/python2-cheetah/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 56977 2011-10-17 13:24:23Z jelle $ +# Contributor: James Rayner <james@archlinux.org> +# Contributor: Todd Maynard <arch@toddmaynard.com> + +pkgname=python2-cheetah +pkgver=2.4.4 +pkgrel=3 +pkgdesc="A Python-powered template engine and code generator" +arch=('i686' 'x86_64') +url="http://www.cheetahtemplate.org/" +license=('custom') +depends=('python2' 'python-markdown') +makedepends=('python2-distribute') +optdepends=('python2-pygments: for the CodeHighlighter filter') +provides=('cheetah' 'python-cheetah') +conflicts=('cheetah' 'python-cheetah') +source=(http://pypi.python.org/packages/source/C/Cheetah/Cheetah-${pkgver}.tar.gz) +md5sums=('853917116e731afbc8c8a43c37e6ddba') + +build() { + cd "${srcdir}/Cheetah-${pkgver}" + python2 setup.py build +} + +package() { + cd "${srcdir}/Cheetah-${pkgver}" + python2 setup.py install --root="${pkgdir}" + install -D -m644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" + + find $pkgdir/usr/lib/python2.7/site-packages/Cheetah/ -name '*.py' | \ + xargs sed -i "s|#!/usr/bin/env python|#!/usr/bin/env python2|" +} |