mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-12 13:30:17 +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=18.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/${name:8:1}/${name#*-}/${name#*-}-$version.tar.gz)
|
|
md5sum=(b066f2a33524519cf4e97ab69f462479)
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
python2 setup.py build
|
|
python2 setup.py install --root "$PKG"
|
|
}
|