mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
16 lines
429 B
Plaintext
Executable File
16 lines
429 B
Plaintext
Executable File
# description : Python PE parsing module
|
|
# homepage : https://github.com/erocarrera/pefile
|
|
# depends : python3-installer python3-wheel
|
|
|
|
name=python3-pefile
|
|
version=2023.2.7
|
|
release=1
|
|
source="$name-$version.tar.gz::https://github.com/erocarrera/pefile/archive/v$version/python-setuptools-$version.tar.gz"
|
|
|
|
build() {
|
|
cd pefile-$version
|
|
python3 -m build --wheel --no-isolation
|
|
python3 -m installer --destdir="$PKG" dist/*.whl
|
|
}
|
|
|