mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-22 05:44:47 +00:00
11 lines
228 B
Plaintext
11 lines
228 B
Plaintext
getver_cairo() {
|
|
fetch \
|
|
| grep -Ev '(r|py|py2)'cairo \
|
|
| grep -Eo $filename[_-][0-9a-z.]+.tar.[bgx]z2? \
|
|
| sed "s/$filename[-_]//;s/\.tar.*//" \
|
|
| grep -Evi '(alpha|beta|rc)' \
|
|
| grep [[:digit:]] \
|
|
| sort -V \
|
|
| uniq
|
|
}
|