From c39413c53d748f4d11a171a9ad7ce553cc3bbaf2 Mon Sep 17 00:00:00 2001 From: John McQuah Date: Fri, 22 Jul 2022 14:35:13 -0400 Subject: [PATCH] lzip: initial commit --- REPO | 6 +++--- lzip/.footprint | 7 +++++++ lzip/.signature | 5 +++++ lzip/Pkgfile | 18 ++++++++++++++++++ 4 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 lzip/.footprint create mode 100644 lzip/.signature create mode 100644 lzip/Pkgfile diff --git a/REPO b/REPO index f0db26c..5f7b628 100644 --- a/REPO +++ b/REPO @@ -125,9 +125,9 @@ f:bfc6b59a99e4cad11f446c3d41fbd8dd:python3-agate-excel/.footprint f:c9a349aba698a195de02511b7d0f7222:python3-sqlalchemy/.signature f:6e722d52a4a03d8ed3c4381120a2e074:python3-sqlalchemy/Pkgfile f:804ec48752abdbb6198658edc84ab05d:python3-sqlalchemy/.footprint -f:e1a7ff03ab254a9cc4a63c196101bf96:waybar/.signature -f:6128499b9b354418a83bdfa31a387dff:waybar/Pkgfile -f:85556c904c079fe22d7bf703b0962ca3:waybar/.footprint +f:01ddef3900927197932eeeb229547801:waybar/.signature +f:d142d513654718e84bf8b4643d5e810c:waybar/Pkgfile +f:d2830d11fcd6aa07521bf682f90dd6d6:waybar/.footprint f:1c4de4af60e9ed45b56890df01628268:sbcl/.signature f:3486f94a83e7be7393d2208029d887b9:sbcl/Pkgfile f:acf8c625a9357f1aafa621f2f34c6ee0:sbcl/.footprint diff --git a/lzip/.footprint b/lzip/.footprint new file mode 100644 index 0000000..fd9e3b8 --- /dev/null +++ b/lzip/.footprint @@ -0,0 +1,7 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/lzip +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/lzip.1.gz diff --git a/lzip/.signature b/lzip/.signature new file mode 100644 index 0000000..46cafc7 --- /dev/null +++ b/lzip/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/jmq.pub +RWTTPlFarK9CxOYsZUXA4eMgEf4eHzZnKPimsNFgesMdf0a/7YoeiLv6o9o6hh3r6sUyHyJAhJz1GIdhqRjUZ4Xm6DdOogBz/ws= +SHA256 (Pkgfile) = 50bb648fa155eea79e9c43905ae2b14c12d2ce1f0629cf09492d2bc3fd69bab7 +SHA256 (.footprint) = f01d2156c01caf95db3af4d0e999ba77dcb4bb71d7ec6da80a802f02723291e8 +SHA256 (lzip-1.23.tar.gz) = 4792c047ddf15ef29d55ba8e68a1a21e0cb7692d87ecdf7204419864582f280d diff --git a/lzip/Pkgfile b/lzip/Pkgfile new file mode 100644 index 0000000..ce4d0ef --- /dev/null +++ b/lzip/Pkgfile @@ -0,0 +1,18 @@ +# Description: lossless data compressor using the Lempel-Ziv-Markov chain Algorithm +# URL: https://www.nongnu.org/lzip/lzip.html +# Maintainer: John McQuah, jmcquah at disroot dot org +# Depends on: + +name=lzip +version=1.23 +release=1 +source=(http://download.savannah.gnu.org/releases/$name/$name-$version.tar.gz) + +build() { + cd "$name-$version" + ./configure --prefix=/usr + + make + make DESTDIR=$PKG install + rm -r $PKG/usr/share/info +}