forked from ports/contrib
19 lines
515 B
Plaintext
19 lines
515 B
Plaintext
|
# Description: Human friendly input/output for text interfaces using Python
|
||
|
# URL: https://github.com/xolox/python-humanfriendly
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: python3-setuptools
|
||
|
|
||
|
name=python3-humanfriendly
|
||
|
version=10.0
|
||
|
release=1
|
||
|
source=(https://pypi.org/packages/source/h/humanfriendly/humanfriendly-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd humanfriendly-$version
|
||
|
|
||
|
/usr/bin/python3 setup.py build
|
||
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
||
|
--root=$PKG \
|
||
|
--skip-build
|
||
|
}
|