wok view thermald/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents 4e2673103892
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="thermald"
4 VERSION="1.9.1"
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 }