mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-28 10:20:07 +00:00
11 lines
249 B
Plaintext
11 lines
249 B
Plaintext
url=https://www.oracle.com/technetwork/database/database-technologies/berkeleydb/downloads/index-082944.html
|
|
|
|
getver_db() {
|
|
fetch \
|
|
| grep -Eo db-[0-9.]+.tar.gz \
|
|
| grep -Ev '(6.*|18.*)' \
|
|
| sed 's/db-//;s/\.tar\.gz//' \
|
|
| sort -V \
|
|
| uniq
|
|
}
|