aboutsummaryrefslogtreecommitdiff
path: root/kiss-cargo-urlgen
blob: 2105329f245326a222d26ac90ab45c02b319d6f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# Create static cargo sources for Rust packages

# Copyright (C) 2020 - Dylan Araps.
# Copyright (C) 2020 - Cem Keylan.
# Distributed under the terms of the MIT License

case "$1" in ''|--help|-h) printf '\033[1;33m-> \033[m%s\n' "usage: ${0##*/} [crate+ver] [crate+ver]"; exit 0 ; esac

# We convert the name-version seperator from '+' to '-' to
# avoid issues that may arise from version numbers that include
# a '-'.

for crate in "$@"; do
    printf 'https://static.crates.io/crates/%s/%s.crate vendor\n' \
        "${crate%+*}" "$(echo "$crate" | sed 's/+/-/')"
done