19 lines
505 B
Plaintext
19 lines
505 B
Plaintext
# Description: Easily write objects that delegate behavior
|
|
# URL: https://launchpad.net/lazr.delegates
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: python3-zope-interface
|
|
|
|
name=python3-lazr-delegates
|
|
version=2.1.0
|
|
release=1
|
|
source=(https://pypi.org/packages/source/l/lazr.delegates/lazr.delegates-$version.tar.gz)
|
|
|
|
build() {
|
|
cd lazr.delegates-$version
|
|
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
|
--root=$PKG \
|
|
--skip-build
|
|
}
|