mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 05:37:15 +08:00
26 lines
750 B
Bash
26 lines
750 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrian Chaves Fernandez (Gallaecio) <adriyetichaves@gmail.com>
|
|
|
|
pkgname=python2-zope-interface
|
|
_pkgname=zope.interface
|
|
pkgver=4.0.1
|
|
pkgrel=2
|
|
pkgdesc="Separate distribution of the zope.interface package used in Zope 3"
|
|
license=('ZPL')
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.zope.org/Products/ZopeInterface/"
|
|
depends=('python2')
|
|
makedepends=(setuptools)
|
|
provides=('zope-interface')
|
|
conflicts=('zope-interface')
|
|
replaces=('zope-interface')
|
|
source=(http://pypi.python.org/packages/source/z/${_pkgname}/${_pkgname}-$pkgver.tar.gz)
|
|
md5sums=('d171f8f8a6997409c7680f1dbb3b7e45')
|
|
|
|
build() {
|
|
cd $srcdir/${_pkgname}-$pkgver
|
|
python2 setup.py install --prefix=/usr --root=$pkgdir
|
|
}
|