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