mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 09:37:14 +08:00
28 lines
743 B
Bash
28 lines
743 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=1
|
||
|
pkgdesc="A collection of extensions to the Python 2 distutils"
|
||
|
arch=('any')
|
||
|
license=('PSF')
|
||
|
url="http://packages.python.org/distribute"
|
||
|
depends=('python')
|
||
|
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}
|
||
|
}
|