blob: 6f6a0589297fa25713b42b2adcfeffb15b79436e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/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
}
check () {
# fix these tests to work
make check || true
}
package () {
make prefix=$PKG_DEST/usr install
}
|