mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
20 lines
656 B
Bash
20 lines
656 B
Bash
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
|
# Maintainer: Douglas Soares de Andrade <dsa@aur.archlinux.org>
|
|
# Contributor: William Rea <sillywilly@gmail.com>
|
|
|
|
pkgname=python-pytz
|
|
pkgver=2009d
|
|
pkgrel=1
|
|
pkgdesc="Cross platform time zone library for Python"
|
|
arch=('i686' 'x86_64')
|
|
url="http://sourceforge.net/projects/pytz"
|
|
license=("MIT")
|
|
depends=('python')
|
|
source=(http://pypi.python.org/packages/source/p/pytz/pytz-$pkgver.tar.bz2)
|
|
|
|
build() {
|
|
cd $startdir/src/pytz-$pkgver
|
|
python setup.py install --root=$startdir/pkg/
|
|
install -D LICENSE.txt $startdir/pkg/usr/share/licenses/$pkgname/LICENSE
|
|
}
|
|
md5sums=('f1dfee0d4d5b424f0c6a8d93ddebfee7')
|