wok annotate hiredis/receipt @ rev 23975

Up matio (1.5.18), mutt (1.14.7), nasm (2.15.05), net-snmp (5.9), nethack (3.6.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Oct 28 17:24:13 2020 +0000 (2020-10-28)
parents cb1baa1e7ee4
children 5ea0ce1cecc0
rev   line source
pascal@18371 1 # SliTaz package receipt.
pascal@18371 2
pascal@18371 3 PACKAGE="hiredis"
Hans-G?nter@21036 4 VERSION="0.14.0"
pascal@18371 5 CATEGORY="misc"
pascal@18371 6 SHORT_DESC="Minimalistic C client for Redis >= 1.2."
pascal@18371 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@18371 8 LICENSE="BSD"
Hans-G?nter@21036 9 WEB_SITE="https://github.com/redis/hiredis"
Hans-G?nter@21036 10
pascal@18371 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@18371 12 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
pascal@18371 13
Hans-G?nter@21036 14 BUILD_DEPENDS=""
pascal@18371 15
pascal@18371 16 # Rules to configure and make the package.
pascal@18371 17 compile_rules()
pascal@18371 18 {
Hans-G?nter@21036 19 make -j 1 &&
Hans-G?nter@21036 20 make PREFIX=/usr DESTDIR=$DESTDIR install
pascal@18371 21 }
pascal@18371 22
pascal@18371 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@18371 24 genpkg_rules()
pascal@18371 25 {
pascal@18371 26 mkdir -p $fs/usr/lib
pascal@18371 27 cp -a $install/usr/lib/*.so* $fs/usr/lib
pascal@18371 28 }