# $Id: PKGBUILD 88228 2013-04-14 19:37:35Z aginiewicz $ # Maintainer: Andrzej Giniewicz pkgname=python2-traits pkgver=4.3.0 pkgrel=1 pkgdesc="Explicitly typed attributes for Python" arch=('i686' 'x86_64' 'mips64el') url="https://github.com/enthought/traits" license=('BSD') depends=('python2-numpy') makedepends=('python2-distribute') options=(!emptydirs) source=("$pkgname-$pkgver.tar.gz::https://github.com/enthought/traits/archive/${pkgver}.tar.gz") md5sums=('f78c15c44e0f965cc2ab799806a80388') build() { cd "$srcdir"/traits-$pkgver python2 setup.py build } package() { cd "$srcdir"/traits-$pkgver python2 setup.py install --root="$pkgdir"/ --optimize=1 install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE }