mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
6241a49943
This allows the scripts to work on systems that don't have /bin/bash as /bin/sh--such as Debian.
51 lines
1.1 KiB
Bash
51 lines
1.1 KiB
Bash
platform='unknown'
|
|
unameval=`uname`
|
|
if [ "$unameval" = 'Linux' ]; then
|
|
platform='linux'
|
|
elif [ "$unameval" = 'FreeBSD' ]; then
|
|
platform='freebsd'
|
|
fi
|
|
|
|
sha1sumcmd='sha1sum'
|
|
if [ "$platform" = 'freebsd' ]; then
|
|
sha1sumcmd='shasum'
|
|
fi
|
|
|
|
pkgroot="$(pwd)"
|
|
deps="$pkgroot/.deps"
|
|
prefix="$deps/usr"
|
|
export PATH="$prefix/bin:$PATH"
|
|
|
|
download() {
|
|
local url=$1
|
|
local tgt=$2
|
|
local sha1=$3
|
|
|
|
if [ ! -d "$tgt" ]; then
|
|
mkdir -p "$tgt"
|
|
if which wget > /dev/null 2>&1; then
|
|
tmp_dir=$(mktemp -d "/tmp/download_sha1check_XXXXXXX")
|
|
fifo="$tmp_dir/fifo"
|
|
mkfifo "$fifo"
|
|
# download, untar and calculate sha1 sum in one pass
|
|
(wget "$url" -O - | tee "$fifo" | \
|
|
(cd "$tgt"; tar --strip-components=1 -xvzf -)) &
|
|
sum=$("$sha1sumcmd" < "$fifo" | cut -d ' ' -f1)
|
|
rm -rf "$tmp_dir"
|
|
if [ "$sum" != "$sha1" ]; then
|
|
echo "SHA1 sum doesn't match, expected '$sha1' got '$sum'"
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "Missing wget utility"
|
|
exit 1
|
|
fi
|
|
fi
|
|
}
|
|
|
|
github_download() {
|
|
local repo=$1
|
|
local ver=$2
|
|
download "https://github.com/${repo}/archive/${ver}.tar.gz" "$3" "$4"
|
|
}
|