diff options
author | davidovski <david@davidovski.xyz> | 2022-01-16 01:23:51 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-16 01:23:51 +0000 |
commit | cb447620084a20be80d116c81c2e9ec110be7118 (patch) | |
tree | 9fc0d714abbb5c6326b60616a5fd27ec9f984895 /repo/system/zstd.xibuild | |
parent | 153011e9129c6055ef21c48caf65a23e74a91418 (diff) |
restructured repo system
Diffstat (limited to 'repo/system/zstd.xibuild')
-rw-r--r-- | repo/system/zstd.xibuild | 14 |
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 +} |