2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-02 14:02:27 +00:00

plzip: new package at 1.8

This commit is contained in:
Dylan Araps 2020-05-07 18:18:10 +03:00
parent 366d995add
commit 9988701383
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
4 changed files with 22 additions and 0 deletions

17
extra/plzip/build Executable file
View File

@ -0,0 +1,17 @@
#!/bin/sh -e
# plzip is the only thing that will ever require
# this library. Let's simple build it and statically
# compile plzip.
(cd lzlib; ./configure; make)
./configure \
--prefix=/usr \
CXXFLAGS="$CXXFLAGS -static -L$PWD/lzlib -I$PWD/lzlib"
make
make DESTDIR="$1" install
# Create the symlink for compatibility. We're using
# a multi-threaded implementation of lzip.
ln -s plzip "$1/usr/bin/lzip"

2
extra/plzip/checksums Normal file
View File

@ -0,0 +1,2 @@
edafae3c15142ac0ebd84c2231ff81da4f68db58359a737e750f2780686c3612 plzip-1.8.tar.gz
2472f8d93830d0952b0c75f67e372d38c8f7c174dde2252369d5b20c87d3ba8e lzlib-1.9.tar.gz

2
extra/plzip/sources Normal file
View File

@ -0,0 +1,2 @@
http://download.savannah.gnu.org/releases/lzip/plzip/plzip-1.8.tar.gz
http://download.savannah.gnu.org/releases/lzip/lzlib/lzlib-1.9.tar.gz lzlib

1
extra/plzip/version Normal file
View File

@ -0,0 +1 @@
1.8 1