# vim: syn=sh ft=sh et sw=2 sts=2 ts=2 tw=0: #Packager: Cyrille Pontvieux pkgname=pytz pkgver=2013.9 pkgrel=1cp source=(https://pypi.python.org/packages/source/p/pytz/${pkgname}-${pkgver}.tar.bz2) sourcetemplate=http://people.salixos.org/jrd/salix/$pkgname/$pkgver-\$arch-$pkgrel/ docs=("readme" "install" "copying" "changelog" "authors" "news" "todo" "changes" "license.txt" "readme.txt" "pkg-info") url=https://launchpad.net/pytz slackdesc=\ ( #|-----handy-ruler------------------------------------------------------| "$pkgname (World timezone definitions for Python)" "pytz brings the Olson tz database into Python. This library allows" "accurate and cross platform timezone calculations using Python 2.3" "or higher. It also solves the issue of ambiguous times at the end" "of daylight savings, which you can read more about in the Python" "Library Reference (datetime.tzinfo)." ) build() { cd $SRC/$pkgname-$pkgver || return 1 python setup.py install --prefix=/usr --root=$PKG || return 1 }