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