btrfs-progs/travis/build-dep-zstd
David Sterba fae4b632f5 btrfs-progs: tests: pull zstd version 1.3.7 to the travis CI
There's a newer version of zstd, without any obvious changes that would
affect our build testing coverage.

Signed-off-by: David Sterba <dsterba@suse.com>
2018-11-26 17:26:51 +01:00

29 lines
561 B
Bash
Executable File

#!/bin/sh
# download, build and install the zstd library
version=1.3.7
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"