wok annotate hiredis/receipt @ rev 21803

created recipe for nnn 2.6
author Hans-G?nter Theisgen
date Sat Aug 10 20:59:16 2019 +0100 (2019-08-10)
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 }