wok annotate thermald/receipt @ rev 22805

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