wok-current rev 24645
updated hiredis and hiredis-dev (0.14.0 -> 1.0.2)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Mar 10 09:47:42 2022 +0100 (2022-03-10) |
parents | 7d05d3f89e8d |
children | 85d57ffe7860 |
files | hiredis-dev/receipt hiredis/description.txt hiredis/receipt |
line diff
1.1 --- a/hiredis-dev/receipt Thu Mar 10 09:34:32 2022 +0100 1.2 +++ b/hiredis-dev/receipt Thu Mar 10 09:47:42 2022 +0100 1.3 @@ -1,22 +1,20 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="hiredis-dev" 1.7 -VERSION="0.14.0" 1.8 +VERSION="1.0.2" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="Minimalistic C client for Redis >= 1.2, development files." 1.11 +SHORT_DESC="Minimalistic C client for Redis >= 1.2 - development files." 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="BSD" 1.14 WEB_SITE="https://github.com/redis/hiredis" 1.15 1.16 +DEPENDS="hiredis pkg-config" 1.17 WANTED="hiredis" 1.18 -DEPENDS="hiredis pkg-config" 1.19 1.20 # Rules to gen a SliTaz package suitable for Tazpkg. 1.21 genpkg_rules() 1.22 { 1.23 - mkdir -p $fs/usr/lib 1.24 - 1.25 - cp -a $install/usr/lib/*a $fs/usr/lib 1.26 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.27 - cp -a $install/usr/include $fs/usr 1.28 + cook_copy_folders include 1.29 + cook_copy_folders pkgconfig 1.30 + cook_copy_files *.*a 1.31 }
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/hiredis/description.txt Thu Mar 10 09:47:42 2022 +0100 2.3 @@ -0,0 +1,7 @@ 2.4 +Hiredis is a minimalistic C client library for the Redis database. 2.5 + 2.6 +It is minimalistic because it just adds minimal support for the 2.7 +protocol, but at the same time it uses a high level printf-alike API 2.8 +in order to make it much higher level than otherwise suggested by 2.9 +its minimal code base and the lack of explicit bindings for every 2.10 +Redis command.
3.1 --- a/hiredis/receipt Thu Mar 10 09:34:32 2022 +0100 3.2 +++ b/hiredis/receipt Thu Mar 10 09:47:42 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="hiredis" 3.7 -VERSION="0.14.0" 3.8 +VERSION="1.0.2" 3.9 CATEGORY="misc" 3.10 SHORT_DESC="Minimalistic C client for Redis >= 1.2." 3.11 MAINTAINER="pascal.bellard@slitaz.org" 3.12 @@ -22,13 +22,14 @@ 3.13 # Rules to configure and make the package. 3.14 compile_rules() 3.15 { 3.16 - make -j 1 && 3.17 - make PREFIX=/usr DESTDIR=$DESTDIR install 3.18 + make && 3.19 + make install \ 3.20 + PREFIX=/usr \ 3.21 + DESTDIR=$DESTDIR 3.22 } 3.23 3.24 # Rules to gen a SliTaz package suitable for Tazpkg. 3.25 genpkg_rules() 3.26 { 3.27 - mkdir -p $fs/usr/lib 3.28 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.29 + cook_copy_files *.so* 3.30 }