summaryrefslogtreecommitdiff
path: root/repo/system/zstd.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/zstd.xibuild')
-rw-r--r--repo/system/zstd.xibuild14
1 files changed, 14 insertions, 0 deletions
diff --git a/repo/system/zstd.xibuild b/repo/system/zstd.xibuild
new file mode 100644
index 0000000..40a7a5a
--- /dev/null
+++ b/repo/system/zstd.xibuild
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+DEPS=(glibc gcc-libs zlib xz lz4)
+
+SOURCE=https://github.com/facebook/zstd/releases/download/v1.5.1/zstd-1.5.1.tar.gz
+DESC="the Zstandard real-time compression algorithm"
+
+build () {
+ make
+
+ # fix these tests to work
+ #make check
+ make prefix=$PKG_DEST/usr install
+}