mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
16 lines
379 B
Plaintext
16 lines
379 B
Plaintext
# description : Core utilities for Python packages
|
|
# depends : python3-pyparsing python3-six
|
|
|
|
name=python3-packaging
|
|
_name=${name#*-}
|
|
_n=${_name%${_name#?}}
|
|
version=21.3
|
|
release=1
|
|
source="https://files.pythonhosted.org/packages/source/$_n/${name#*-}/${name#*-}-$version.tar.gz"
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --root "$PKG"
|
|
}
|