summaryrefslogtreecommitdiff
path: root/core/xz
diff options
context:
space:
mode:
Diffstat (limited to 'core/xz')
-rw-r--r--core/xz/.footprint47
-rw-r--r--core/xz/.signature6
-rw-r--r--core/xz/MAKEPKG39
3 files changed, 92 insertions, 0 deletions
diff --git a/core/xz/.footprint b/core/xz/.footprint
new file mode 100644
index 0000000..498c917
--- /dev/null
+++ b/core/xz/.footprint
@@ -0,0 +1,47 @@
+drwxr-xr-x root/root bin/
+-rwxr-xr-x root/root bin/lzmadec
+-rwxr-xr-x root/root bin/lzmainfo
+-rwxr-xr-x root/root bin/xz
+-rwxr-xr-x root/root bin/xzdec
+lrwxrwxrwx root/root bin/lzcat -> xz
+lrwxrwxrwx root/root bin/lzma -> xz
+lrwxrwxrwx root/root bin/unlzma -> xz
+lrwxrwxrwx root/root bin/unxz -> xz
+lrwxrwxrwx root/root bin/xzcat -> xz
+drwxr-xr-x root/root include/
+-rw-r--r-- root/root include/lzma.h
+drwxr-xr-x root/root include/lzma/
+-rw-r--r-- root/root include/lzma/base.h
+-rw-r--r-- root/root include/lzma/bcj.h
+-rw-r--r-- root/root include/lzma/block.h
+-rw-r--r-- root/root include/lzma/check.h
+-rw-r--r-- root/root include/lzma/container.h
+-rw-r--r-- root/root include/lzma/delta.h
+-rw-r--r-- root/root include/lzma/filter.h
+-rw-r--r-- root/root include/lzma/hardware.h
+-rw-r--r-- root/root include/lzma/index.h
+-rw-r--r-- root/root include/lzma/index_hash.h
+-rw-r--r-- root/root include/lzma/lzma12.h
+-rw-r--r-- root/root include/lzma/stream_flags.h
+-rw-r--r-- root/root include/lzma/version.h
+-rw-r--r-- root/root include/lzma/vli.h
+drwxr-xr-x root/root lib/
+-rw-r--r-- root/root lib/liblzma.a
+-rwxr-xr-x root/root lib/liblzma.so.5.8.4
+lrwxrwxrwx root/root lib/liblzma.so -> liblzma.so.5.8.4
+lrwxrwxrwx root/root lib/liblzma.so.5 -> liblzma.so.5.8.4
+drwxr-xr-x root/root lib/pkgconfig/
+-rw-r--r-- root/root lib/pkgconfig/liblzma.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/lzmainfo.1.gz
+-rw-r--r-- root/root usr/share/man/man1/xz.1.gz
+-rw-r--r-- root/root usr/share/man/man1/xzdec.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/lzcat.1.gz -> xz.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/lzma.1.gz -> xz.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/lzmadec.1.gz -> xzdec.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/unlzma.1.gz -> xz.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/unxz.1.gz -> xz.1.gz
+lrwxrwxrwx root/root usr/share/man/man1/xzcat.1.gz -> xz.1.gz
diff --git a/core/xz/.signature b/core/xz/.signature
new file mode 100644
index 0000000..93d4dfa
--- /dev/null
+++ b/core/xz/.signature
@@ -0,0 +1,6 @@
+RWTZ9IduCSQ/mGaa1bAAocnYTdpKowxht0iXixuk6hrfnNXNM88pTx0XYFERIkrBApY/LrMpTUXoGZErsHxT1O1JEt/YCpk9WwA=
+
+SHA256 (MAKEPKG) = 79aed8c0c51e49e237279b37fa81418ed0a2b2264227c757344e028deb1cc8fb
+SHA256 (.footprint) = 0e90e2d143a8a5ad42ae2cc1252a39bae5480086ec8deacf2b5a42c2e4d724a8
+SHA256 (xz-5.8.4.tar.xz) = 4ce24038fd4221e0d13bc1a2de7a4db56e90b92b3bf75321f6c14be73f65de4b
+SHA256 (xz#5.8.4-1.pkg.tar.gz) = 8505da1686e4357f9088008c6f69d3445605e6b68a0e9dc5c75248a3e0fa8e8a
diff --git a/core/xz/MAKEPKG b/core/xz/MAKEPKG
new file mode 100644
index 0000000..c396136
--- /dev/null
+++ b/core/xz/MAKEPKG
@@ -0,0 +1,39 @@
+#!/bin/mkpkg
+# description: XZ compression utilities
+# url: https://tukaani.org/xz
+
+name=xz
+version=5.8.4
+release=1
+lockbox=(yes)
+source=(https://github.com/tukaani-project/xz/releases/download/v$version/$name-$version.tar.xz)
+sha256sums=(
+ "4ce24038fd4221e0d13bc1a2de7a4db56e90b92b3bf75321f6c14be73f65de4b"
+)
+
+build() {
+ cd $name-$version
+ ./configure \
+ --prefix=/ \
+ --bindir=/bin \
+ --libdir=/lib \
+ --includedir=/include \
+ --mandir=/usr/share/man \
+ --disable-nls
+ make
+ make install DESTDIR=$PKG
+
+ rm -rf $PKG/share
+ for f in lzcmp lzdiff lzgrep lzegrep lzfgrep lzless lzmore \
+ xzcmp xzdiff xzgrep xzegrep xzfgrep xzless xzmore; do
+ rm -f $PKG/bin/$f
+ rm -f $PKG/usr/share/man/man1/$f.1*
+ done
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh