lzip: initial commit

This commit is contained in:
John McQuah 2022-07-22 14:35:13 -04:00
parent 4a2a1cd2b7
commit c39413c53d
4 changed files with 33 additions and 3 deletions

6
REPO
View File

@ -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

7
lzip/.footprint Normal file
View File

@ -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

5
lzip/.signature Normal file
View File

@ -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

18
lzip/Pkgfile Normal file
View File

@ -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
}