diff options
| author | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
|---|---|---|
| committer | rawnix ports <ports@rawnix.org> | 2026-09-26 18:19:05 +0000 |
| commit | c82e88dd00d1b0b7fcfb4e5628d99611388cef6f (patch) | |
| tree | 56d864b5a5c6c145edd96178ae219a8f90e191a6 /core/lz4 | |
| download | ports-c82e88dd00d1b0b7fcfb4e5628d99611388cef6f.tar.gz | |
sync 2026-09-26 18:19 UTC
1672 files changed, 151396 insertions(+)
Diffstat (limited to 'core/lz4')
| -rw-r--r-- | core/lz4/.footprint | 25 | ||||
| -rw-r--r-- | core/lz4/.signature | 6 | ||||
| -rw-r--r-- | core/lz4/MAKEPKG | 33 |
3 files changed, 64 insertions, 0 deletions
diff --git a/core/lz4/.footprint b/core/lz4/.footprint new file mode 100644 index 0000000..bab8d7a --- /dev/null +++ b/core/lz4/.footprint @@ -0,0 +1,25 @@ +drwxr-xr-x root/root bin/ +-rwxr-xr-x root/root bin/lz4 +lrwxrwxrwx root/root bin/lz4c -> lz4 +lrwxrwxrwx root/root bin/lz4cat -> lz4 +lrwxrwxrwx root/root bin/unlz4 -> lz4 +drwxr-xr-x root/root include/ +-rw-r--r-- root/root include/lz4.h +-rw-r--r-- root/root include/lz4file.h +-rw-r--r-- root/root include/lz4frame.h +-rw-r--r-- root/root include/lz4frame_static.h +-rw-r--r-- root/root include/lz4hc.h +drwxr-xr-x root/root lib/ +-rwxr-xr-x root/root lib/liblz4.so.1.10.0 +lrwxrwxrwx root/root lib/liblz4.so -> liblz4.so.1.10.0 +lrwxrwxrwx root/root lib/liblz4.so.1 -> liblz4.so.1.10.0 +drwxr-xr-x root/root lib/pkgconfig/ +-rw-r--r-- root/root lib/pkgconfig/liblz4.pc +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/lz4.1.gz +lrwxrwxrwx root/root usr/share/man/man1/lz4c.1.gz -> lz4.1.gz +lrwxrwxrwx root/root usr/share/man/man1/lz4cat.1.gz -> lz4.1.gz +lrwxrwxrwx root/root usr/share/man/man1/unlz4.1.gz -> lz4.1.gz diff --git a/core/lz4/.signature b/core/lz4/.signature new file mode 100644 index 0000000..4ac019d --- /dev/null +++ b/core/lz4/.signature @@ -0,0 +1,6 @@ +RWTZ9IduCSQ/mEuqcvW/vu8WhH0dF1Le10t+IWUDDGC6IJgj9Yz/QmJ/vkIk5J6DotDpqvdAk5SNsuB7rBeno9Hl7ZE2RQvn4QU= + +SHA256 (MAKEPKG) = 0b84dc58fe331625fcb37dcfaa5e16c307644dbd420631e21e5aaaa5bf40bece +SHA256 (.footprint) = c111d4905173f8fc06b919f65d694d6e8520843e1db01eb6886d070ccf621368 +SHA256 (lz4-1.10.0.tar.gz) = 537512904744b35e232912055ccf8ec66d768639ff3abe5788d90d792ec5f48b +SHA256 (lz4#1.10.0-1.pkg.tar.gz) = 3a563ca49afdd16bf3fe01b2ccb1ae2e1adfe1a33b1ddd98b5787fe75ccb6130 diff --git a/core/lz4/MAKEPKG b/core/lz4/MAKEPKG new file mode 100644 index 0000000..215dc03 --- /dev/null +++ b/core/lz4/MAKEPKG @@ -0,0 +1,33 @@ +#!/bin/mkpkg +# description: Extremely fast compression algorithm +# url: https://lz4.org + +name=lz4 +version=1.10.0 +release=1 +source=(https://github.com/lz4/lz4/archive/v$version/$name-$version.tar.gz) + +depends=() +makedeps=() + +sha256sums=( + "537512904744b35e232912055ccf8ec66d768639ff3abe5788d90d792ec5f48b" +) + +build() { + cd $name-$version + + + make -C lib PREFIX=/ + make -C programs PREFIX=/ lz4 lz4c + make install PREFIX=/ MANDIR=/usr/share/man DESTDIR=$PKG + + rm -f $PKG/lib/*.a +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh |
