blob: d8ed907ac50f56e374abe04306b249c38675e460 (
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.0.1
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 }
|