wok rev 24048
Add xxhash-lib
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon May 10 19:56:39 2021 +0000 (2021-05-10) |
parents | c1a1d1f23e07 |
children | 7bea68e23e6b |
files | rsync/receipt xxhash-dev/receipt xxhash-lib/receipt xxhash/receipt |
line diff
1.1 --- a/rsync/receipt Mon May 10 19:33:04 2021 +0000 1.2 +++ b/rsync/receipt Mon May 10 19:56:39 2021 +0000 1.3 @@ -14,7 +14,7 @@ 1.4 TAGS="sync copy secure" 1.5 HOST_ARCH="i486 arm" 1.6 1.7 -DEPENDS="popt attr acl xxhash" 1.8 +DEPENDS="popt attr acl xxhash-lib" 1.9 BUILD_DEPENDS="popt-dev attr-dev acl-dev xxhash-dev" 1.10 1.11 # TazPanel 1.12 @@ -34,6 +34,9 @@ 1.13 --mandir=/usr/share/man \ 1.14 --disable-iconv \ 1.15 --disable-iconv-open \ 1.16 + --disable-openssl \ 1.17 + --disable-zstd \ 1.18 + --disable-lz4 \ 1.19 $CONFIGURE_ARGS 1.20 sed -i -e 's/HAVE_ICONV_H ./HAVE_ICONV_H 0/' \ 1.21 -e 's/HAVE_ICONV_OPEN ./HAVE_ICONV_OPEN 0/' config.h
2.1 --- a/xxhash-dev/receipt Mon May 10 19:33:04 2021 +0000 2.2 +++ b/xxhash-dev/receipt Mon May 10 19:56:39 2021 +0000 2.3 @@ -9,7 +9,7 @@ 2.4 WEB_SITE="http://cyan4973.github.io/xxHash/" 2.5 WANTED="xxhash" 2.6 2.7 -DEPENDS="xxhash pkg-config" 2.8 +DEPENDS="xxhash-lib pkg-config" 2.9 2.10 # Rules to gen a SliTaz package suitable for Tazpkg. 2.11 genpkg_rules()
3.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 3.2 +++ b/xxhash-lib/receipt Mon May 10 19:56:39 2021 +0000 3.3 @@ -0,0 +1,17 @@ 3.4 +# SliTaz package receipt. 3.5 + 3.6 +PACKAGE="xxhash-lib" 3.7 +VERSION="0.8.0" 3.8 +CATEGORY="libs" 3.9 +SHORT_DESC="Extremely fast non-cryptographic hash algorithm, library files." 3.10 +MAINTAINER="pascal.bellard@slitaz.org" 3.11 +LICENSE="BSD GPL2" 3.12 +WEB_SITE="http://cyan4973.github.io/xxHash/" 3.13 +WANTED="xxhash" 3.14 + 3.15 +# Rules to gen a SliTaz package suitable for Tazpkg. 3.16 +genpkg_rules() 3.17 +{ 3.18 + mkdir -p $fs/usr/lib 3.19 + cp -a $install/usr/lib/*.so* $fs/usr/lib/ 3.20 +}
4.1 --- a/xxhash/receipt Mon May 10 19:33:04 2021 +0000 4.2 +++ b/xxhash/receipt Mon May 10 19:56:39 2021 +0000 4.3 @@ -10,6 +10,8 @@ 4.4 WEB_SITE="http://cyan4973.github.io/xxHash/" 4.5 WGET_URL="https://github.com/Cyan4973/xxHash/archive/refs/tags/v$VERSION.tar.gz" 4.6 4.7 +DEPENDS="xxhash-lib" 4.8 + 4.9 current_version() 4.10 { 4.11 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ 4.12 @@ -29,5 +31,4 @@ 4.13 { 4.14 mkdir -p $fs/usr/lib 4.15 cp -a $install/usr/bin $fs/usr/ 4.16 - cp -a $install/usr/lib/*.so* $fs/usr/lib/ 4.17 }