mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 18:20:12 +00:00
15 lines
389 B
Plaintext
15 lines
389 B
Plaintext
# description : Core utilities for Python packages
|
|
# depends : python3-pyparsing python3-six
|
|
|
|
name=python3-packaging
|
|
version=19.1
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/${name:8:1}/${name#*-}/${name#*-}-$version.tar.gz)
|
|
md5sum=(3eb3089f82710e222125b1db08c67edd)
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --root "$PKG"
|
|
}
|