mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
15 lines
452 B
Plaintext
15 lines
452 B
Plaintext
# description : Allows a python process to change its process title
|
|
# homepage : https://github.com/dvarrazzo/py-setproctitle
|
|
# depends : python3 procps-ng
|
|
|
|
name=python3-setproctitle
|
|
version=1.3.3
|
|
release=1
|
|
source="$name-$version.tar.gz::https://files.pythonhosted.org/packages/source/s/setproctitle/setproctitle-$version.tar.gz"
|
|
|
|
build() {
|
|
cd setproctitle-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --skip-build -O1 --root="$PKG"
|
|
}
|