diff options
author | John Vogel <jvogel4@stny.rr.com> | 2020-06-28 09:47:20 -0400 |
---|---|---|
committer | John Vogel <jvogel4@stny.rr.com> | 2020-06-28 09:47:20 -0400 |
commit | 6ec5bb9f99c5bb0891dc77e3887dbfc0614c53a8 (patch) | |
tree | 30f0691973e89dc4df3569995df9b43f1cfeca63 /lz4 | |
parent | 3f3ef8037f2e45e919f435d5a907f76492ab32ce (diff) | |
download | contrib-6ec5bb9f99c5bb0891dc77e3887dbfc0614c53a8.tar.gz contrib-6ec5bb9f99c5bb0891dc77e3887dbfc0614c53a8.tar.xz |
lz4: initial import
Diffstat (limited to 'lz4')
-rw-r--r-- | lz4/.footprint | 25 | ||||
-rw-r--r-- | lz4/.signature | 5 | ||||
-rw-r--r-- | lz4/Pkgfile | 17 |
3 files changed, 47 insertions, 0 deletions
diff --git a/lz4/.footprint b/lz4/.footprint new file mode 100644 index 000000000..983203781 --- /dev/null +++ b/lz4/.footprint @@ -0,0 +1,25 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/lz4 +lrwxrwxrwx root/root usr/bin/lz4c -> lz4 +lrwxrwxrwx root/root usr/bin/lz4cat -> lz4 +lrwxrwxrwx root/root usr/bin/unlz4 -> lz4 +drwxr-xr-x root/root usr/include/ +-rw-r--r-- root/root usr/include/lz4.h +-rw-r--r-- root/root usr/include/lz4frame.h +-rw-r--r-- root/root usr/include/lz4frame_static.h +-rw-r--r-- root/root usr/include/lz4hc.h +drwxr-xr-x root/root usr/lib/ +-rw-r--r-- root/root usr/lib/liblz4.a +lrwxrwxrwx root/root usr/lib/liblz4.so -> liblz4.so.1.9.2 +lrwxrwxrwx root/root usr/lib/liblz4.so.1 -> liblz4.so.1.9.2 +-rwxr-xr-x root/root usr/lib/liblz4.so.1.9.2 +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/liblz4.pc +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/lz4/.signature b/lz4/.signature new file mode 100644 index 000000000..0e49567d6 --- /dev/null +++ b/lz4/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF324dbo22WVDio43OZKxZXoZHxxLm9rFaQgUVs/rAHHO3JlwF8FsuKVrP83BEapx+zftGrjRE/aM5YJFvZBOnywI= +SHA256 (Pkgfile) = 6a55ae17d8c3d8be0da3cde1eb6ae02665f9295b83d0189a781cf495632a1d6f +SHA256 (.footprint) = 57c99cbe6791125995fa6f7f3e13ff72ade11b88419c8a0d9fa8cd0353bf5431 +SHA256 (lz4-1.9.2.tar.gz) = 658ba6191fa44c92280d4aa2c271b0f4fbc0e34d249578dd05e50e76d0e5efcc diff --git a/lz4/Pkgfile b/lz4/Pkgfile new file mode 100644 index 000000000..beec0719c --- /dev/null +++ b/lz4/Pkgfile @@ -0,0 +1,17 @@ +# Description: extremely fast compression algorithm +# URL: http://www.lz4.org/ +# Maintainer: John Vogel, jvogel4 at stny dot rr dot com +# Packager: Erich Eckner, crux at eckner dot net + +name=lz4 +version=1.9.2 +release=1 +source=("https://github.com/${name}/${name}/archive/v${version}/${name}-${version}.tar.gz") + +build() { + cd "${name}-${version}" + + make -C lib PREFIX=/usr + make -C programs PREFIX=/usr lz4 lz4c + make install PREFIX=/usr DESTDIR="$PKG" +} |