summaryrefslogtreecommitdiff
path: root/manualPorts
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-01-12 19:10:59 +0100
committerErich Eckner <git@eckner.net>2019-01-12 19:10:59 +0100
commitc7dd2ff7408da71a2f111fee58db2ae1dc4fceb6 (patch)
tree2ccba73228cfba7aad8aebacbbf936485e3a4dfc /manualPorts
parenta76fb5c9b6dabffd510aec7b5b62f3308a0272d9 (diff)
downloadcrux-ports-c7dd2ff7408da71a2f111fee58db2ae1dc4fceb6.tar.xz
lz4 neu
Diffstat (limited to 'manualPorts')
-rw-r--r--manualPorts/lz4/.footprint25
-rw-r--r--manualPorts/lz4/.md5sum1
-rw-r--r--manualPorts/lz4/.signature5
-rw-r--r--manualPorts/lz4/Pkgfile17
4 files changed, 48 insertions, 0 deletions
diff --git a/manualPorts/lz4/.footprint b/manualPorts/lz4/.footprint
new file mode 100644
index 0000000..074e4c8
--- /dev/null
+++ b/manualPorts/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.8.3
+lrwxrwxrwx root/root usr/lib/liblz4.so.1 -> liblz4.so.1.8.3
+-rwxr-xr-x root/root usr/lib/liblz4.so.1.8.3
+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/manualPorts/lz4/.md5sum b/manualPorts/lz4/.md5sum
new file mode 100644
index 0000000..102367f
--- /dev/null
+++ b/manualPorts/lz4/.md5sum
@@ -0,0 +1 @@
+d5ce78f7b1b76002bbfffa6f78a5fc4e v1.8.3.tar.gz
diff --git a/manualPorts/lz4/.signature b/manualPorts/lz4/.signature
new file mode 100644
index 0000000..d0f495f
--- /dev/null
+++ b/manualPorts/lz4/.signature
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/deepthought.pub
+RWQxCptPusLGGpb+1Hc7yUAYFaYQkIfvrOr8WKeeswnzL6nSqmayf6tQh0sljNGXWb/hfqt3UjiJ14DyAD5Xl56LwcsWJavahQI=
+SHA256 (Pkgfile) = 222c7990ecf3da14cca29fc5c7699684812cee40654aa3107dc887e2d861e8dd
+SHA256 (.footprint) = 21dc119c067289a4fea0f8e92a874ac0275188202d3e018431c0aeef59c8cf79
+SHA256 (v1.8.3.tar.gz) = 33af5936ac06536805f9745e0b6d61da606a1f8b4cc5c04dd3cbaca3b9b4fc43
diff --git a/manualPorts/lz4/Pkgfile b/manualPorts/lz4/Pkgfile
new file mode 100644
index 0000000..3a08a62
--- /dev/null
+++ b/manualPorts/lz4/Pkgfile
@@ -0,0 +1,17 @@
+# Description: extremely fast compression algorithm
+# URL: http://www.lz4.org/
+# Maintainer: Erich Eckner, crux at eckner dot net
+
+name=lz4
+version=1.8.3
+release=1
+source=("https://github.com/${name}/${name}/archive/v${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"
+
+}