# HG changeset patch # User Yuri Pourre # Date 1405619352 10800 # Node ID c8d463cdcdb3de235de4a3402f773207aeba746f # Parent c2925982322cdce0c5873985117f23778faa3da9 Add thermald diff -r c2925982322c -r c8d463cdcdb3 thermald/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/thermald/receipt Thu Jul 17 14:49:12 2014 -0300 @@ -0,0 +1,31 @@ +# SliTaz package receipt. + +PACKAGE="thermald" +VERSION="1.3.rc1" +CATEGORY="system-tools" +LICENSE="GPL2" +SHORT_DESC="Linux thermal daemon (thermald) monitors and controls temperature." +MAINTAINER="yuripourre@gmail.com" +TARBALL="v$VERSION.tar.xz" +WEB_SITE="https://01.org/linux-thermal-daemon" +WGET_URL="https://github.com/01org/thermal_daemon/archive/$TARBALL" + +DEPENDS="dbus dbus-glib" +BUILD_DEPENDS="dbus-dev dbus-glib-dev libxml2 wget automake" + +# Rules to configure and make the package. +compile_rules() +{ + ./autogen.sh + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + $CONFIGURE_ARGS && + make && + make DESTDIR=$DESTDIR install +} + +genpkg_rules() +{ + cp -a $install/usr $fs +}