wok view powertop/receipt @ rev 13409

Add: iniparser*
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Oct 01 01:36:27 2012 +0200 (2012-10-01)
parents 02bbaa9d12ba
children 3957e60d6239
line source
1 # SliTaz package receipt.
3 PACKAGE="powertop"
4 VERSION="2.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Utility designed to measure and explain a computer's electrical power consumption"
7 MAINTAINER="domcox@slitaz.org"
8 DEPENDS="ncursesw"
9 BUILD_DEPENDS="acl gettext ncursesw-dev wget autoconf automake libtool"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.lesswatts.org/projects/powertop/"
12 WGET_URL="https://01.org/powertop/sites/default/files/downloads/$TARBALL"
13 TAGS="power-management"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./autogen.sh
20 ./configure && make && make install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 }