mirror of
https://github.com/outbackdingo/ports.git
synced 2026-03-22 07:44:36 +00:00
10 lines
198 B
Plaintext
10 lines
198 B
Plaintext
port_getver() {
|
|
fetch \
|
|
| tr ' ' '\n' \
|
|
| grep -Eo gtk.-[0-9.]+.tar.[bgx]z2? \
|
|
| sed 's/gtk+-//;s/.tar.*//' \
|
|
| grep -Ew "^[0-9]+\.[0-9]*[02468]\.*" \
|
|
| grep -Ev ".[89][0-9].*" \
|
|
| grep ^2
|
|
}
|