summaryrefslogtreecommitdiff
path: root/repo/core/zstd.xibuild
blob: 9e90fd775eeb157a8201045e8c2b536c25877061 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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 prefix=/usr check
    make DESTDIR=$PKG_DEST install
}