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

libtorrent: fix rtorrent building for non-64bit archs
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun May 27 12:13:53 2018 +0300 (2018-05-27)
parents d43bf7aae921
children cd7906120828
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="http://oss.oetiker.ch/rrdtool"
10 TARBALL="rrdtool-$VERSION.tar.gz"
11 WGET_URL="$WEB_SITE/pub/$TARBALL"
13 BUILD_DEPENDS="libxml2-dev glib-dev groff"
15 compile_rules() {
16 ./configure \
17 --disable-rrdcgi \
18 --disable-rrd_graph \
19 --disable-nls \
20 --disable-libdbi \
21 --disable-libwrap \
22 --disable-perl \
23 --disable-ruby \
24 --disable-lua \
25 --disable-tcl \
26 --disable-python \
27 $CONFIGURE_ARGS &&
28 fix libtool &&
29 make &&
30 make DESTDIR=$DESTDIR install
31 }
33 genpkg_rules() {
34 copy @std
35 DEPENDS="zlib glib libxml2"
36 TAGS="logs"
37 }