wok view thermald/receipt @ rev 23079

updated liblinebreak and liblinebreak-dev (2.0 -> 2.1)
author Hans-G?nter Theisgen
date Tue Mar 10 16:26:23 2020 +0100 (2020-03-10)
parents 75787a6842b8
children 7397cb36a387
line source
1 # SliTaz package receipt.
3 PACKAGE="thermald"
4 VERSION="1.9"
5 CATEGORY="system-tools"
6 LICENSE="GPL2"
7 SHORT_DESC="Linux thermal daemon (thermald) monitors and controls temperature."
8 MAINTAINER="yuripourre@gmail.com"
9 WEB_SITE="https://01.org/linux-thermal-daemon"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://github.com/intel/thermal_daemon/archive/v$VERSION.tar.gz"
14 DEPENDS="dbus dbus-glib"
15 BUILD_DEPENDS="automake dbus-dev dbus-glib-dev libxml2"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # 1.0
21 sed -i '322s|%lu|%u|' src/thd_zone.cpp
23 ./autogen.sh &&
24 ./configure \
25 --prefix=/usr \
26 --sysconfdir=/etc \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$DESTDIR install
30 }
32 genpkg_rules()
33 {
34 cp -a $install/usr $fs
35 }