summaryrefslogtreecommitdiff
path: root/travis/build-dep-zstd
blob: 22369dd3540a0b7e1c3e351bf2f985011c54783e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh
# download, build and install the zstd library

version=1.3.3

set -e

mkdir tmp-zstd
cd tmp-zstd
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