mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 18:20:12 +00:00
12 lines
225 B
Plaintext
12 lines
225 B
Plaintext
url=https://gitlab.com/cryptsetup/cryptsetup/-/tags
|
|
|
|
getver_cryptsetup() {
|
|
fetch \
|
|
| grep archive \
|
|
| tr '_' '.' \
|
|
| grep -Eo cryptsetup-v[0-9.]+.tar.gz \
|
|
| sed 's,cryptsetup-v,,;s,\.tar\.gz,,' \
|
|
| sort -V \
|
|
| uniq
|
|
}
|