wok-next view rrdtool-lite/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="rrdtool-lite"
4 VERSION="1.4.6"
5 CATEGORY="misc"
6 SHORT_DESC="Data logging system for time series data"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 WEB_SITE="https://oss.oetiker.ch/rrdtool/"
9 REPOLOGY="rrdtool"
11 TARBALL="rrdtool-$VERSION.tar.gz"
12 WGET_URL="$WEB_SITE/pub/$TARBALL"
14 BUILD_DEPENDS="libxml2-dev glib-dev groff"
16 SIBLINGS="rrdtool"
18 compile_rules() {
19 ./configure \
20 --disable-rrdcgi \
21 --disable-rrd_graph \
22 --disable-nls \
23 --disable-libdbi \
24 --disable-libwrap \
25 --disable-perl \
26 --disable-ruby \
27 --disable-lua \
28 --disable-tcl \
29 --disable-python \
30 $CONFIGURE_ARGS &&
31 fix libtool &&
32 make &&
33 make DESTDIR=$install install
34 }
36 genpkg_rules() {
37 copy @std
38 DEPENDS="zlib glib libxml2"
39 TAGS="logs"
40 }