blob: 3b4e193290e7ea58f72386f211e3b03a6df2e881 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
MAKEDEPS="make "
DEPS="musl zlib xz lz4"
PKG_VER=1.5.2
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
}
|