wok view hiredis/receipt @ rev 20200

aufs: move kernel module to linux*-aufs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Feb 12 17:29:20 2018 +0100 (2018-02-12)
parents
children d079070599f5
line source
1 # SliTaz package receipt.
3 PACKAGE="hiredis"
4 VERSION="0.13.3"
5 CATEGORY="misc"
6 SHORT_DESC="Minimalistic C client for Redis >= 1.2."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/redis/hiredis"
11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
13 BUILD_DEPENDS="wget"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 make && make PREFIX=/usr DESTDIR=$DESTDIR install
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/lib
25 cp -a $install/usr/lib/*.so* $fs/usr/lib
26 }