mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
16 lines
399 B
Plaintext
16 lines
399 B
Plaintext
# description : Self-contained ISO 3166-1 country definitions (python2)
|
|
# depends : python2-setuptools
|
|
|
|
name=python2-iso3166
|
|
_name=${name#*-}
|
|
_n=${_name%${_name#?}}
|
|
version=2.1.1
|
|
release=1
|
|
source="https://files.pythonhosted.org/packages/source/$_n/${name#*-}/${name#*-}-$version.tar.gz"
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
python2 setup.py build
|
|
python2 setup.py install --root=$PKG --optimize=1
|
|
}
|