diff options
author | root <root@rshg054.dnsready.net> | 2013-01-31 00:07:23 -0800 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-01-31 00:07:23 -0800 |
commit | a949895a0243a490d30fe355655c839fe217c580 (patch) | |
tree | 9895367801e2aab74b4a31e81263ab0d4693055f /community/python2-cheetah/PKGBUILD | |
parent | c25b7aa323ab71b1a524d15dbbe942dbebd55761 (diff) |
Thu Jan 31 00:07:23 PST 2013
Diffstat (limited to 'community/python2-cheetah/PKGBUILD')
-rw-r--r-- | community/python2-cheetah/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/python2-cheetah/PKGBUILD b/community/python2-cheetah/PKGBUILD new file mode 100644 index 000000000..1a9fb9000 --- /dev/null +++ b/community/python2-cheetah/PKGBUILD @@ -0,0 +1,33 @@ +# Maintainer: Julien Nicoulaud <julien.nicoulaud@gmail.com> +# Contributor: James Rayner <james@archlinux.org> +# Contributor: Todd Maynard <arch@toddmaynard.com> +# Source: https://github.com/nicoulaj/archlinux-packages +pkgname=python2-cheetah +pkgver=2.4.4 +pkgrel=5 +pkgdesc="A Python-powered template engine and code generator" +arch=(i686 x86_64) +url="http://www.cheetahtemplate.org" +license=(custom) +depends=(python2 python2-markdown) +makedepends=(python2-distribute) +optdepends=('python2-pygments: for the CodeHighlighter filter') +provides=(cheetah python-cheetah) +conflicts=(cheetah python-cheetah) +changelog=Changelog +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() { + msg "Install..." + cd "${srcdir}/Cheetah-${pkgver}" + python2 setup.py install --root="${pkgdir}" || return 1 + + msg2 "Install copyright resources in /usr/share/licenses/${pkgname}..." + install -Dm644 "${srcdir}/Cheetah-${pkgver}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" +} |