wok view rrdtool-lite/receipt @ rev 19082

Tiny edits: use Freedesktop standard icons for terminal and text editor...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Apr 29 16:03:09 2016 +0300 (2016-04-29)
parents
children 881c653f2f8c
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="pkg-config 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 }