wok view thermald/receipt @ rev 19683

Add: mate (a package to install all MATE desktop at once)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 12 00:43:16 2017 +0100 (2017-02-12)
parents 952382c025de 371ffcd4f10c
children 4e2673103892
line source
1 # SliTaz package receipt.
3 PACKAGE="thermald"
4 VERSION="1.3.rc1"
5 CATEGORY="system-tools"
6 LICENSE="GPL2"
7 SHORT_DESC="Linux thermal daemon (thermald) monitors and controls temperature."
8 MAINTAINER="yuripourre@gmail.com"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://01.org/linux-thermal-daemon"
11 WGET_URL="https://github.com/01org/thermal_daemon/archive/v$VERSION.tar.gz"
13 DEPENDS="dbus dbus-glib"
14 BUILD_DEPENDS="dbus-dev dbus-glib-dev libxml2 wget automake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./autogen.sh
20 ./configure \
21 --prefix=/usr \
22 --sysconfdir=/etc \
23 $CONFIGURE_ARGS &&
24 make &&
25 make DESTDIR=$DESTDIR install
26 }
28 genpkg_rules()
29 {
30 cp -a $install/usr $fs
31 }