mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-08 02:10:21 +00:00
15 lines
416 B
Plaintext
15 lines
416 B
Plaintext
# description : SVG optimizer/cleaner that reduces their size by optimizing structure and removing unnecessary data
|
|
# depends : python3-setuptools
|
|
|
|
name=python3-scour
|
|
version=038.1
|
|
release=1
|
|
source="https://github.com/scour-project/scour/archive/v$version/scour-$version.tar.gz"
|
|
|
|
build() {
|
|
cd scour-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --root=$PKG --optimize=1
|
|
mv $PKG/usr/bin/scour{,-py3}
|
|
}
|