wok-next view waterline-plugin-multiload/receipt @ rev 20785

gpgme: add gnupg, since build can not find gpgconf and gpg
author Erkan Yilmaz <erkan@slitaz.org>
date Sat Jun 09 07:02:52 2018 +0000 (2018-06-09)
parents 757d032c55c7
children 87011214235a
line source
1 # SliTaz package receipt v2.
3 PACKAGE="waterline-plugin-multiload"
4 VERSION="f8b592a"
5 CATEGORY="x-window"
6 SHORT_DESC="multiload-nandhp is a port of the GNOME multiload applet to SDE waterline panel"
7 MAINTAINER="psychomaniak@xakep.ru"
8 LICENSE="GPL2"
9 WEB_SITE="http://git.make-linux.org/sde/waterline-plugin-multiload"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="http://git.make-linux.org/sde/$PACKAGE.git/snapshot/$TARBALL"
14 BUILD_DEPENDS="automake libtool intltool gtk+-dev jansson-dev libsde-utils \
15 libsde-utils-x11 libsde-utils-jansson libsde-utils-gtk \
16 xorg-libXcomposite-dev menu-cache-dev alsa-lib-dev xz \
17 libgtop-dev lxpanel-dev waterline-dev xorg-dev intltool gettext"
18 SPLIT="waterline-plugin-multiload lxpanel-plugin-multiload"
20 compile_rules() {
21 rm -rf $src/.git
22 ./autogen.sh || return 1
23 sed 's#ls $srcdir/po/\*.po #& 2>/dev/null#' -i configure
24 ./configure \
25 --libexec=/usr/lib \
26 --disable-static \
27 --disable-maintainer-mode \
28 --enable-silent-rules \
29 --with-waterline \
30 --with-lxpanel \
31 --without-xfce4 \
32 $CONFIGURE_ARGS &&
33 fix libtool &&
34 make &&
35 make install
36 }
38 genpkg_rules() {
39 case $PACKAGE in
40 waterline-plugin-multiload)
41 copy waterline/plugins/*.so
42 DEPENDS="waterline libgtop"
43 ;;
44 lxpanel-plugin-multiload)
45 copy lxpanel/plugins/*.so
46 DEPENDS="lxpanel libgtop"
47 ;;
48 esac
49 TAGS="desktop panel"
50 }