blob: db1f5152c20c07a081f727cdd37b073a9adef7a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
DEPS=(glibc gcc-libs zlib xz lz4)
SOURCE=https://github.com/facebook/zstd
DESC="the Zstandard real-time compression algorithm"
build () {
make
make -C contrib/pzstd
make prefix=/usr check
make DESTDIR=$PKG_DEST install
}
|