wok annotate 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
rev   line source
domcox@1252 1 # SliTaz package receipt.
domcox@1252 2
domcox@1252 3 PACKAGE="powertop"
erjo@13409 4 VERSION="2.0"
domcox@1252 5 CATEGORY="system-tools"
domcox@1252 6 SHORT_DESC="Utility designed to measure and explain a computer's electrical power consumption"
domcox@3474 7 MAINTAINER="domcox@slitaz.org"
domcox@5310 8 DEPENDS="ncursesw"
erjo@13409 9 BUILD_DEPENDS="acl gettext ncursesw-dev wget autoconf automake libtool"
erjo@13409 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
domcox@1252 11 WEB_SITE="http://www.lesswatts.org/projects/powertop/"
erjo@13409 12 WGET_URL="https://01.org/powertop/sites/default/files/downloads/$TARBALL"
domcox@6097 13 TAGS="power-management"
domcox@1252 14
domcox@1252 15 # Rules to configure and make the package.
domcox@1252 16 compile_rules()
domcox@1252 17 {
domcox@1252 18 cd $src
erjo@13409 19 ./autogen.sh
erjo@13409 20 ./configure && make && make install
domcox@1252 21 }
domcox@1252 22
domcox@1252 23 # Rules to gen a SliTaz package suitable for Tazpkg.
domcox@1252 24 genpkg_rules()
domcox@1252 25 {
domcox@1252 26 mkdir -p $fs/usr
domcox@1252 27 cp -a $_pkg/usr/bin $fs/usr
domcox@1252 28 }
domcox@1252 29