forked from ports/contrib
20 lines
574 B
Plaintext
20 lines
574 B
Plaintext
|
# Description: Pretty-print tabular data in Python, a library and a command-line utility.
|
||
|
# URL: https://bitbucket.org/astanin/python-tabulate
|
||
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
||
|
# Depends on: python3-setuptools
|
||
|
# Optional: python3-numpy python3-pandas
|
||
|
|
||
|
name=python3-tabulate
|
||
|
version=0.8.9
|
||
|
release=1
|
||
|
source=(https://files.pythonhosted.org/packages/source/t/tabulate/tabulate-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd tabulate-$version
|
||
|
/usr/bin/python3 setup.py build
|
||
|
/usr/bin/python3 setup.py install --prefix=/usr \
|
||
|
--root=$PKG \
|
||
|
--skip-build \
|
||
|
-O1
|
||
|
}
|