Date: Monday, August 19, 2013 @ 11:57:36 Author: angvp Revision: 95998
archrelease: copy trunk to community-testing-any Added: python2-envisage/repos/community-testing-any/ python2-envisage/repos/community-testing-any/PKGBUILD (from rev 95997, python2-envisage/trunk/PKGBUILD) ----------+ PKGBUILD | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) Copied: python2-envisage/repos/community-testing-any/PKGBUILD (from rev 95997, python2-envisage/trunk/PKGBUILD) =================================================================== --- community-testing-any/PKGBUILD (rev 0) +++ community-testing-any/PKGBUILD 2013-08-19 09:57:36 UTC (rev 95998) @@ -0,0 +1,31 @@ +# $Id$ +# Maintainer: Andrzej Giniewicz <ggi...@gmail.com> + +pkgname=python2-envisage +pkgver=4.3.0 +pkgrel=2 +pkgdesc="Extensible Application Framework" +arch=('any') +url="https://github.com/enthought/envisage" +license=('BSD') +depends=('python2-apptools') +makedepends=('python2-setuptools') +options=(!emptydirs) + +source=("$pkgname-$pkgver.tar.gz::https://github.com/enthought/envisage/archive/${pkgver}.tar.gz") +md5sums=('80439d265c92e2c14a680a58d7cb8f16') + +build() { + cd "$srcdir"/envisage-$pkgver + + python2 setup.py build +} + +package() { + cd "$srcdir"/envisage-$pkgver + + python2 setup.py install --root="$pkgdir"/ --optimize=1 + + install -D LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE +} +