diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-05-21 13:36:18 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-05-21 13:36:18 +0000 |
commit | f9ca1925e34255433cc81edbfee99526c16bebc7 (patch) | |
tree | eb4a6e1d6bdaabc325ae5ca7dc4f2b3b099b9905 /testing/py-buildutils | |
parent | 5f3e19c1bca037bbc4448fbe2135831cbbd7f2a6 (diff) | |
download | aports-f9ca1925e34255433cc81edbfee99526c16bebc7.tar.bz2 aports-f9ca1925e34255433cc81edbfee99526c16bebc7.tar.xz |
testing/py-buildutils: renamed from python26-buildutils
Diffstat (limited to 'testing/py-buildutils')
-rw-r--r-- | testing/py-buildutils/APKBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/py-buildutils/APKBUILD b/testing/py-buildutils/APKBUILD new file mode 100644 index 0000000000..f414f35ef6 --- /dev/null +++ b/testing/py-buildutils/APKBUILD @@ -0,0 +1,23 @@ +# Contributor: Andrew Manison <amanison@anselsystems.com> +# Maintainer: +pkgname=py-buildutils +_pkgname=${pkgname#py-} +pkgver=0.3 +pkgrel=0 +pkgdesc="buildutils is a collection of enhancements to the Python distutils" +url="http://pypi.python.org/pypi/buildutils/0.3" +license="GPL" +depends="python py-setuptools" +makedepends="python-dev" +install= +subpackages="" +source="http://pypi.python.org/packages/source/b/$_pkgname/$_pkgname-$pkgver.tar.gz" + +build() { + cd "$srcdir"/$_pkgname-$pkgver + mkdir -p "$pkgdir"/usr/lib/python2.6/site-packages + python setup.py install --root="$pkgdir" + echo "/usr/lib/python2.6/site-packages/$_pkgname-$pkgver-py2.6.egg" > "$pkgdir"/usr/lib/python2.6/site-packages/$_pkgname.pth +} + +md5sums="fec620dee05f591edad386366b52e17b buildutils-0.3.tar.gz" |