core/python-distribute/PKGBUILD
2010-12-19 00:39:38 +00:00

28 lines
744 B
Bash

#
# Chakra Packages for Chakra, part of chakra-project.org
#
# contributor (x86_64): Giuseppe Calà <jiveaxe@gmail.com>
# include global config
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
pkgname=python-distribute
pkgver=0.6.14
pkgrel=2
pkgdesc="A collection of extensions to the Python 2 distutils"
arch=('any')
license=('PSF')
url="http://packages.python.org/distribute"
depends=('python2')
conflicts=('setuptools')
replaces=('setuptools')
provides=('setuptools=0.6c11')
source=(http://pypi.python.org/packages/source/d/distribute/distribute-${pkgver}.tar.gz)
sha1sums=('6bea50b97f36bf751548bb486a534204a690aa4d')
package() {
cd ${srcdir}/distribute-${pkgver}
python2 setup.py install --prefix=/usr --root=${pkgdir}
}