mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
15 lines
433 B
Plaintext
15 lines
433 B
Plaintext
# description : SVG optimizer/cleaner that reduces their size by optimizing structure and removing unnecessary data
|
|
# depends : python2-setuptools
|
|
|
|
name=python2-scour
|
|
version=0.38.2
|
|
release=1
|
|
source="https://github.com/scour-project/scour/archive/v$version/scour-$version.tar.gz"
|
|
|
|
build() {
|
|
cd scour-$version
|
|
python2 setup.py build
|
|
python2 setup.py install --root=$PKG --optimize=1
|
|
mv $PKG/usr/bin/scour $PKG/usr/bin/scour-py2
|
|
}
|