wok view thermald/receipt @ rev 19635

Up SliTaz projects: cookutils(867), slitaz-base-files(321), slitaz-boot-scripts(437), slitaz-tools(1009), tazbug(95), tazirc(20), tazlito(448), tazpkg(933).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jan 17 17:38:43 2017 +0200 (2017-01-17)
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 }