#!/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
}

package () {
    mv $PKG_DEST/usr/local/* $PKG_DEST/usr/
}