wok-6.x view powertop/receipt @ rev 1252

Add powertop
author Dominique Corbex <domcox@users.sourceforge.net>
date Tue Aug 12 22:20:10 2008 +0200 (2008-08-12)
parents
children ed75184861e7
line source
1 # SliTaz package receipt.
3 PACKAGE="powertop"
4 VERSION="1.10"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utility designed to measure and explain a computer's electrical power consumption"
7 MAINTAINER="domcox@users.sourceforge.net"
8 DEPENDS="ncurses"
9 BUILD_DEPENDS="ncurses-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.lesswatts.org/projects/powertop/"
12 WGET_URL="http://www.lesswatts.org/projects/powertop/download/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 # switch from ncursesw to ncurses
19 sed -e 's/lncursesw/lncurses/g' Makefile > Makefile.slitaz
20 cp Makefile.slitaz Makefile
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/bin $fs/usr
31 strip -s $fs/usr/bin/*
32 mkdir -p $fs/usr/share/locale
33 for LANG in de es it fr
34 do
35 cp -a $_pkg/usr/share/locale/$LANG* $fs/usr/share/locale
36 done
37 }