mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-31 22:32:14 +01:00
25 lines
788 B
Plaintext
25 lines
788 B
Plaintext
# Contributor: Andrew Manison <amanison@anselsystems.com>
|
|
# Maintainer:
|
|
pkgname=py-buildutils
|
|
_pkgname=${pkgname#py-}
|
|
pkgver=0.3
|
|
pkgrel=1
|
|
pkgdesc="buildutils is a collection of enhancements to the Python distutils"
|
|
url="http://pypi.python.org/pypi/buildutils/0.3"
|
|
arch="all"
|
|
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"
|