btrfs-progs/ci/build-dep-zstd
David Sterba 09252e76ae btrfs-progs: ci: updated zstd version to 1.4.5
There's a new major version of zstd, without any obvious changes that
would affect our build testing coverage.

Signed-off-by: David Sterba <dsterba@suse.com>
2020-08-31 17:01:06 +02:00

29 lines
561 B
Bash
Executable file

#!/bin/sh
# download, build and install the zstd library
version=1.4.5
dir=tmp-cached-zstd
stamp="$dir/.last-build-zstd"
here=`pwd`
set -e
if [ -d "$dir" -a -f "$stamp" ]; then
echo "Using valid cache for $dir, built" `cat "$stamp"`
cd "$dir"
cd zstd-${version}
sudo make install PREFIX=/usr
exit 0
fi
echo "No or stale cache for $dir, rebuilding"
rm -rf "$dir"
mkdir "$dir"
cd "$dir"
wget https://github.com/facebook/zstd/archive/v${version}.tar.gz
tar xf v${version}.tar.gz
cd zstd-${version}
make
sudo make install PREFIX=/usr
date > "$here/$stamp"