wok view rrdtool-lite/receipt @ rev 19674

Add get-opera-blink
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Feb 08 05:35:49 2017 +0200 (2017-02-08)
parents e0f543054107
children d5f2ad767bdf
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"
12 HOST_ARCH="i486 arm"
14 DEPENDS="zlib glib libxml2"
15 BUILD_DEPENDS="pkg-config libxml2-dev glib-dev groff"
16 TAGS="logs"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure --prefix=/usr --infodir=/usr/share/info \
22 --disable-rrdcgi \
23 --disable-rrd_graph \
24 --disable-nls \
25 --disable-libdbi \
26 --disable-libwrap \
27 --disable-perl \
28 --disable-ruby \
29 --disable-lua \
30 --disable-tcl \
31 --disable-python \
32 --mandir=/usr/share/man $CONFIGURE_ARGS &&
33 make &&
34 make DESTDIR=$DESTDIR install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/usr/lib
41 cp -a $install/usr/lib/*.so* $fs/usr/lib
42 cp -a $install/usr/bin $fs/usr
43 }