blob: 2fd4bfc77c09407c64857d7b568d49e512855579 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/bash
DEPS=(glibc gcc-libs zlib xz lz4)
PKG_VER=1.5.1
SOURCE=https://github.com/facebook/zstd/releases/download/v$PKG_VER/zstd-$PKG_VER.tar.gz
DESC="the Zstandard real-time compression algorithm"
build () {
make
# fix these tests to work
#make check
make prefix=$PKG_DEST/usr install
}
|