lzip: initial commit
parent
4a2a1cd2b7
commit
c39413c53d
@ -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
|
@ -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
|
@ -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
|
||||
}
|
Loading…
Reference in New Issue