diff options
author | Michael Hanson <hansonorders@verizon.net> | 2010-11-18 01:54:50 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verizon.net> | 2010-11-18 01:54:50 (GMT) |
commit | c874d7ab92d83e481f25e335908595224e888a54 (patch) | |
tree | 736d5eac20f8efe8e8f1124488ebe931d55bc4d2 | |
parent | 8e31397fe4497321e5a75fb54099cea463ffa007 (diff) | |
download | linhes_pkgbuild-c874d7ab92d83e481f25e335908595224e888a54.zip linhes_pkgbuild-c874d7ab92d83e481f25e335908595224e888a54.tar.gz linhes_pkgbuild-c874d7ab92d83e481f25e335908595224e888a54.tar.bz2 |
python-nose: initial import for python-numpy
-rw-r--r-- | abs/core/python-nose/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/abs/core/python-nose/PKGBUILD b/abs/core/python-nose/PKGBUILD new file mode 100644 index 0000000..847e88a --- /dev/null +++ b/abs/core/python-nose/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: $ +# Maintainer: +# Contributor: Douglas Soares de Andrade <douglas@archlinux.org> +# Contributor: Cilyan Olowen <gaknar@gmail.com> + +pkgname=python-nose +pkgver=0.11.3 +pkgrel=2 +pkgdesc="A discovery-based unittest extension" +arch=('any') +url="http://www.somethingaboutorange.com/mrl/projects/nose/" +license=('LGPL2') +depends=('setuptools') +source=("http://www.somethingaboutorange.com/mrl/projects/nose/nose-${pkgver}.tar.gz") +md5sums=('7f1dc53750811f78bedef9e14a4bc5a5') + +build() { + cd "$srcdir/nose-$pkgver" + sed -i -e "s:man/man1:share/man/man1:g" setup.py +} + +package() { + cd "$srcdir/nose-$pkgver" + python2 setup.py install --prefix=/usr --root=${pkgdir} || return 1 +} + |