diff options
-rwxr-xr-x | community/lz4/build | 12 | ||||
-rw-r--r-- | community/lz4/checksums | 2 | ||||
-rw-r--r-- | community/lz4/meta | 3 | ||||
-rw-r--r-- | community/lz4/sources | 1 | ||||
-rw-r--r-- | community/lz4/version | 1 |
5 files changed, 19 insertions, 0 deletions
diff --git a/community/lz4/build b/community/lz4/build new file mode 100755 index 00000000..918a76c1 --- /dev/null +++ b/community/lz4/build @@ -0,0 +1,12 @@ +#!/bin/sh -e + +mk() { + make \ + PREFIX=/usr \ + "$@" +} + +mk -C lib +mk -C programs LDFLAGS="$LDFLAGS -static" lz4 lz4c + +mk DESTDIR="$1" install diff --git a/community/lz4/checksums b/community/lz4/checksums new file mode 100644 index 00000000..133be309 --- /dev/null +++ b/community/lz4/checksums @@ -0,0 +1,2 @@ +%BLAKE3 +bde6efecda026cbbde99cfc7fdc8fe2df55a2285013f0d8fb770d244c20255f7 v1.9.3.tar.gz diff --git a/community/lz4/meta b/community/lz4/meta new file mode 100644 index 00000000..c95cd673 --- /dev/null +++ b/community/lz4/meta @@ -0,0 +1,3 @@ +description: LZ4 compression utilites +license: BSD-2-Clause, GPL-2.0-or-later +maintainer: Cem Keylan <cem@carbslinux.org> diff --git a/community/lz4/sources b/community/lz4/sources new file mode 100644 index 00000000..1cf4f0a6 --- /dev/null +++ b/community/lz4/sources @@ -0,0 +1 @@ +https://github.com/lz4/lz4/archive/v1.9.3.tar.gz diff --git a/community/lz4/version b/community/lz4/version new file mode 100644 index 00000000..c82debec --- /dev/null +++ b/community/lz4/version @@ -0,0 +1 @@ +1.9.3 1 |