wok-current rev 24059
Rename lz5 to lizard
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Jun 09 15:03:00 2021 +0000 (2021-06-09) |
parents | 35b57cb1532a |
children | f08fe4855be4 |
files | lizard-dev/receipt lizard/description.txt lizard/receipt lz5-dev/receipt lz5/receipt shellinabox/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/lizard-dev/receipt Wed Jun 09 15:03:00 2021 +0000 1.3 @@ -0,0 +1,21 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="lizard-dev" 1.7 +VERSION="1.0" 1.8 +CATEGORY="development" 1.9 +SHORT_DESC="A modification of LZ4 with a better ratio, delevlopment files." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +LICENSE="BSD GPL2" 1.12 +WEB_SITE="https://github.com/inikep/lizard" 1.13 +WANTED="lizard" 1.14 + 1.15 +DEPENDS="lizard pkg-config" 1.16 + 1.17 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.18 +genpkg_rules() 1.19 +{ 1.20 + mkdir -p $fs/usr/lib 1.21 + cp -a $install/usr/include $fs/usr/ 1.22 + cp -a $install/usr/lib/*a $fs/usr/lib 1.23 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.24 +}
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/lizard/description.txt Wed Jun 09 15:03:00 2021 +0000 2.3 @@ -0,0 +1,4 @@ 2.4 +Lizard (formerly LZ5) is an efficient compressor with very fast decompression. 2.5 +It achieves compression ratio that is comparable to zip/zlib and zstd/brotli 2.6 +(at low and medium compression levels) at decompression speed of 1000 MB/s 2.7 +and faster.
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/lizard/receipt Wed Jun 09 15:03:00 2021 +0000 3.3 @@ -0,0 +1,35 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="lizard" 3.7 +VERSION="1.0" 3.8 +CATEGORY="base-system" 3.9 +SHORT_DESC="A modification of LZ4 with a better ratio but slower." 3.10 +MAINTAINER="pascal.bellard@slitaz.org" 3.11 +LICENSE="BSD GPL2" 3.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 3.13 +WEB_SITE="https://github.com/inikep/lizard" 3.14 +WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" 3.15 + 3.16 +BUILD_DEPENDS="pkg-config" 3.17 + 3.18 +current_version() 3.19 +{ 3.20 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 3.21 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 3.22 +} 3.23 + 3.24 +# Rules to configure and make the package. 3.25 +compile_rules() 3.26 +{ 3.27 + sed -i 's|/usr/local|/usr|' Makefile */Makefile 3.28 + make && 3.29 + make DESTDIR=$DESTDIR install 3.30 +} 3.31 + 3.32 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.33 +genpkg_rules() 3.34 +{ 3.35 + mkdir -p $fs/usr/lib 3.36 + cp -a $install/usr/bin $fs/usr 3.37 + cp -a $install/usr/lib/*.so* $fs/usr/lib 3.38 +}
4.1 --- a/lz5-dev/receipt Tue Jun 08 21:38:41 2021 +0000 4.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 4.3 @@ -1,21 +0,0 @@ 4.4 -# SliTaz package receipt. 4.5 - 4.6 -PACKAGE="lz5-dev" 4.7 -VERSION="2.0" 4.8 -CATEGORY="development" 4.9 -SHORT_DESC="A modification of LZ4 with a better ratio, delevlopment files." 4.10 -MAINTAINER="pascal.bellard@slitaz.org" 4.11 -LICENSE="BSD GPL2" 4.12 -WEB_SITE="https://github.com/inikep/lz5" 4.13 -WANTED="lz5" 4.14 - 4.15 -DEPENDS="lz5 pkg-config" 4.16 - 4.17 -# Rules to gen a SliTaz package suitable for Tazpkg. 4.18 -genpkg_rules() 4.19 -{ 4.20 - mkdir -p $fs/usr/lib 4.21 - cp -a $install/usr/include $fs/usr/ 4.22 - cp -a $install/usr/lib/*a $fs/usr/lib 4.23 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 4.24 -}
5.1 --- a/lz5/receipt Tue Jun 08 21:38:41 2021 +0000 5.2 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 5.3 @@ -1,35 +0,0 @@ 5.4 -# SliTaz package receipt. 5.5 - 5.6 -PACKAGE="lz5" 5.7 -VERSION="2.0" 5.8 -CATEGORY="base-system" 5.9 -SHORT_DESC="A modification of LZ4 with a better ratio but slower." 5.10 -MAINTAINER="pascal.bellard@slitaz.org" 5.11 -LICENSE="BSD GPL2" 5.12 -TARBALL="$PACKAGE-$VERSION.tar.gz" 5.13 -WEB_SITE="https://github.com/inikep/lz5" 5.14 -WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" 5.15 - 5.16 -BUILD_DEPENDS="pkg-config" 5.17 - 5.18 -current_version() 5.19 -{ 5.20 - wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 5.21 - sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 5.22 -} 5.23 - 5.24 -# Rules to configure and make the package. 5.25 -compile_rules() 5.26 -{ 5.27 - sed -i 's|/usr/local|/usr|' Makefile */Makefile 5.28 - make && 5.29 - make DESTDIR=$DESTDIR install 5.30 -} 5.31 - 5.32 -# Rules to gen a SliTaz package suitable for Tazpkg. 5.33 -genpkg_rules() 5.34 -{ 5.35 - mkdir -p $fs/usr/lib 5.36 - cp -a $install/usr/bin $fs/usr 5.37 - cp -a $install/usr/lib/*.so* $fs/usr/lib 5.38 -}
6.1 --- a/shellinabox/receipt Tue Jun 08 21:38:41 2021 +0000 6.2 +++ b/shellinabox/receipt Wed Jun 09 15:03:00 2021 +0000 6.3 @@ -16,6 +16,12 @@ 6.4 BUILD_DEPENDS="zlib-dev openssl-dev autoconf automake libtool" 6.5 SUGGESTED="ssh knock" 6.6 6.7 +current_version() 6.8 +{ 6.9 + wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 6.10 + sed '/archive.*tar/!d;s|.*/v\(.*\).tar.*|\1|;q' 6.11 +} 6.12 + 6.13 # Rules to configure and make the package. 6.14 compile_rules() 6.15 {