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