mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-06 15:37:14 +08:00
24 lines
697 B
Bash
24 lines
697 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=1
|
||
|
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')
|
||
|
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
|
||
|
}
|