blob: fc9d2d0b20bf99d72dc0a9e524e44f5ef035ed7a (
plain)
1 # Description: the core of the Zope Component Architecture
2 # URL: https://github.com/zopefoundation/zope.component
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-zope-deferredimport python3-zope-deprecation python3-zope-event python3-zope-hookable
5
6 name=python3-zope-component
7 version=5.1.0
8 release=1
9 source=(https://github.com/zopefoundation/zope.component/archive/$version/$name-$version.tar.gz)
10
11 build() {
12 cd zope.component-$version
13 /usr/bin/python3 setup.py build
14 /usr/bin/python3 setup.py install --root=$PKG --optimize=1
15 }
|