mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-22 05:44:47 +00:00
18 lines
481 B
Plaintext
18 lines
481 B
Plaintext
# description : A simple, correct PEP517 package builder
|
|
# homepage : https://github.com/pypa/build
|
|
# depends : python3-packaging python3-pep517 python3-tomli python3-wheel
|
|
|
|
name=python3-build
|
|
version=0.9.0
|
|
release=1
|
|
source="https://pypi.python.org/packages/source/b/build/build-$version.tar.gz"
|
|
|
|
build() {
|
|
cd build-$version
|
|
/usr/bin/python3 setup.py build
|
|
/usr/bin/python3 setup.py install --skip-build \
|
|
--optimize=1 \
|
|
--prefix=/usr \
|
|
--root=$PKG
|
|
}
|