You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
534 B
20 lines
534 B
SF_redirect () { |
|
redirect |
|
process 'http://[a-z]+[.]dl[.]sourceforge[.]net/' 'mirror://sourceforge/' |
|
process '[?].*' '' |
|
} |
|
|
|
SF_version_dir () { |
|
version_link 'http://sourceforge.net/.+/'"$1"'[0-9.]+/$' |
|
} |
|
|
|
SF_version_tarball () { |
|
version_link "${1:-[.]tar[.]}.*/download\$" |
|
} |
|
|
|
GH_latest () { |
|
prefetch_command_rel ../fetchgit/nix-prefetch-git |
|
revision "$("$(dirname "$0")/urls-from-page.sh" "$CURRENT_URL/commits" | grep /commit/ | head -n 1 | xargs basename )" |
|
version '.*' "git-$(date +%Y-%m-%d)" |
|
NEED_TO_CHOOSE_URL= |
|
}
|
|
|