wok view thermald/receipt @ rev 20700

updated afio (2.5.1 -> 2.5.2)
author Hans-G?nter Theisgen
date Tue Feb 05 17:01:36 2019 +0100 (2019-02-05)
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 }