wok-current diff lm-sensors/receipt @ rev 8904
Fix an error which prevented libwebkit to be signaled as broken
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Mon Feb 28 00:19:13 2011 +0100 (2011-02-28) |
parents | |
children | 9376616c10ac |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/lm-sensors/receipt Mon Feb 28 00:19:13 2011 +0100 1.3 @@ -0,0 +1,32 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="lm-sensors" 1.7 +SOURCE="lm_sensors" 1.8 +VERSION="3.2.0" 1.9 +CATEGORY="system-tools" 1.10 +SHORT_DESC="Linux hardware monitoring." 1.11 +MAINTAINER="pascal.bellard@slitaz.org" 1.12 +TARBALL="$SOURCE-$VERSION.tar.bz2" 1.13 +DEPENDS="perl" 1.14 +BUILD_DEPENDS="bison flex rrdtool-dev" 1.15 +SUGGESTED="rrdtool" 1.16 +WEB_SITE="http://www.lm-sensors.org/" 1.17 +WGET_URL="http://dl.lm-sensors.org/lm-sensors/releases/$TARBALL" 1.18 + 1.19 +# Rules to configure and make the package. 1.20 +compile_rules() 1.21 +{ 1.22 + cd $src 1.23 + sed -i 's|/usr/local|/usr|' Makefile 1.24 + make && make DESTDIR=$PWD/_pkg install 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs/usr/lib 1.31 + cp -a $_pkg/etc $fs 1.32 + cp -a $_pkg/usr/bin $fs/usr 1.33 + cp -a $_pkg/usr/sbin $fs/usr 1.34 + cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.35 +}