mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 23:17:16 +08:00
26 lines
761 B
Bash
26 lines
761 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrian Chaves Fernandez (Gallaecio) <adriyetichaves@gmail.com>
|
|
# Contributor: Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=python2-distutils-extra
|
|
_pkgname=python-distutils-extra
|
|
pkgver=2.37
|
|
pkgrel=1
|
|
pkgdesc='Enhancements to the Python build system'
|
|
arch=('any')
|
|
license=('GPL')
|
|
url=https://launchpad.net/python-distutils-extra
|
|
depends=('intltool' 'python2')
|
|
makedepends=('python-distribute')
|
|
replaces=(python-distutils-extra)
|
|
provides=(python-distutils-extra)
|
|
source=(http://launchpad.net/$_pkgname/trunk/$pkgver/+download/$_pkgname-$pkgver.tar.gz)
|
|
md5sums=('52cffcd6e8e17ed5aa2f9303683333ef')
|
|
|
|
build() {
|
|
cd "${srcdir}/$_pkgname-$pkgver"
|
|
python2 setup.py install --root="${pkgdir}"
|
|
}
|