mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 10:20:07 +00:00
15 lines
380 B
Plaintext
15 lines
380 B
Plaintext
# description : Cryptographic library for Python
|
|
# depends : python3
|
|
|
|
name=python3-pycryptodome
|
|
version=3.9.0
|
|
release=1
|
|
source=(https://files.pythonhosted.org/packages/source/${name:8:1}/${name#*-}/${name#*-}-$version.tar.gz)
|
|
md5sum=(97ee98c95f350927bcc0e937976f17ee)
|
|
|
|
build() {
|
|
cd ${name#*-}-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --root=$PKG --optimize=1
|
|
}
|