wok view lm-sensors/receipt @ rev 20007

Add: description.txt and links revision.
author Leonardo Laporte <hackdorte@yandex.com>
date Wed Aug 02 12:34:36 2017 -0300 (2017-08-02)
parents 02bedd0cabb7
children 3705d68ed8f3
line source
1 # SliTaz package receipt.
3 PACKAGE="lm-sensors"
4 SOURCE="lm_sensors"
5 VERSION="3.3.3"
6 CATEGORY="system-tools"
7 SHORT_DESC="Linux hardware monitoring."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL2"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 SUGGESTED="rrdtool"
12 WEB_SITE="http://www.lm-sensors.org/"
13 WGET_URL="http://dl.lm-sensors.org/lm-sensors/releases/$TARBALL"
15 DEPENDS="perl linux-hwmon"
16 BUILD_DEPENDS="bison flex rrdtool-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 sed -i 's|/man|/share&|' Makefile
22 patch -p0 < $stuff/linux-3.0.patch &&
23 make PREFIX=/usr PROG_EXTRA=sensord DESTDIR=$DESTDIR install 2>&1 | \
24 sed 's/d: No such file/d: no such file/'
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $install/etc $fs
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/sbin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }