mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 18:20:07 +00:00
12 lines
257 B
Plaintext
12 lines
257 B
Plaintext
url=https://www.kernel.org
|
|
|
|
port_getver() {
|
|
fetch \
|
|
| grep "Download complete tarball" \
|
|
| grep -Eo $filename[_-][0-9a-z.]+.tar.[bgx]z2? \
|
|
| sed "s/$filename[-_]//;s/\.tar.*//" \
|
|
| grep "^4" \
|
|
| grep -Evi '(alpha|beta|rc|pre)' \
|
|
| grep [[:digit:]]
|
|
}
|