mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-21 21:44:30 +00:00
15 lines
405 B
Plaintext
15 lines
405 B
Plaintext
# description : Internationalized Domain Names in Applications (IDNA)
|
|
# depends : python3
|
|
|
|
name=python3-idna
|
|
version=2.6
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/${name:8:1}/${name#*-}/${name#*-}-$version.tar.gz)
|
|
md5sum=(c706e2790b016bd0ed4edd2d4ba4d147)
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --prefix=/usr --root=$PKG --optimize=1
|
|
}
|