mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-21 09:44:37 +00:00
11 lines
170 B
Plaintext
11 lines
170 B
Plaintext
url=https://inkscape.org/release/
|
|
|
|
getver_inkscape() {
|
|
fetch \
|
|
| grep -Eo inkscape-[0-9.]+/ \
|
|
| sed 's/inkscape-//;s/\///' \
|
|
| grep -v "1.0" \
|
|
| sort -V \
|
|
| uniq
|
|
}
|