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

cairo-clock, grub4dos: fix CFLAGS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 27 12:50:45 2018 +0200 (2018-03-27)
parents c4e53a39395a
children 10df65db91ad
line source
1 # SliTaz package receipt.
3 PACKAGE="rrdtool-lite"
4 SOURCE="rrdtool"
5 VERSION="1.4.6"
6 CATEGORY="misc"
7 SHORT_DESC="Data logging system for time series data."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 TARBALL="$SOURCE-$VERSION.tar.gz"
10 WEB_SITE="http://oss.oetiker.ch/$SOURCE"
11 WGET_URL="$WEB_SITE/pub/$TARBALL"
13 DEPENDS="zlib glib libxml2"
14 BUILD_DEPENDS="libxml2-dev glib-dev groff"
15 TAGS="logs"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --disable-rrdcgi \
22 --disable-rrd_graph \
23 --disable-nls \
24 --disable-libdbi \
25 --disable-libwrap \
26 --disable-perl \
27 --disable-ruby \
28 --disable-lua \
29 --disable-tcl \
30 --disable-python \
31 --mandir=/usr/share/man $CONFIGURE_ARGS &&
32 make &&
33 make DESTDIR=$DESTDIR install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/lib
40 cp -a $install/usr/lib/*.so* $fs/usr/lib
41 cp -a $install/usr/bin $fs/usr
42 }