wok-6.x rev 16920
Add thermald
author | Yuri Pourre <yuripourre@gmail.com> |
---|---|
date | Thu Jul 17 14:49:12 2014 -0300 (2014-07-17) |
parents | c2925982322c |
children | 5f7a1aa9537a |
files | thermald/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/thermald/receipt Thu Jul 17 14:49:12 2014 -0300 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="thermald" 1.7 +VERSION="1.3.rc1" 1.8 +CATEGORY="system-tools" 1.9 +LICENSE="GPL2" 1.10 +SHORT_DESC="Linux thermal daemon (thermald) monitors and controls temperature." 1.11 +MAINTAINER="yuripourre@gmail.com" 1.12 +TARBALL="v$VERSION.tar.xz" 1.13 +WEB_SITE="https://01.org/linux-thermal-daemon" 1.14 +WGET_URL="https://github.com/01org/thermal_daemon/archive/$TARBALL" 1.15 + 1.16 +DEPENDS="dbus dbus-glib" 1.17 +BUILD_DEPENDS="dbus-dev dbus-glib-dev libxml2 wget automake" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + ./autogen.sh 1.23 + ./configure \ 1.24 + --prefix=/usr \ 1.25 + --sysconfdir=/etc \ 1.26 + $CONFIGURE_ARGS && 1.27 + make && 1.28 + make DESTDIR=$DESTDIR install 1.29 +} 1.30 + 1.31 +genpkg_rules() 1.32 +{ 1.33 + cp -a $install/usr $fs 1.34 +}