blob: 32fd3036fdb478b71c74ef6a6517aa1ddeaa8fdc (
plain)
1 # Description: Zope interface library.
2 # URL: http://pypi.python.org/pypi/zope.interface
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-setuptools
5
6 name=python3-zope-interface
7 version=5.5.2
8 release=1
9 source=(https://pypi.io/packages/source/z/zope.interface/zope.interface-$version.tar.gz)
10
11 build() {
12 cd zope.interface-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --root=$PKG --prefix=/usr --optimize=1
15 }
|