wok annotate powertop/receipt @ rev 15295

cdrtools: remove a wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Sep 27 09:56:20 2013 +0000 (2013-09-27)
parents 3957e60d6239
children d00dea30a0c9
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"
pascal@15002 8 LICENSE="GPL2"
erjo@13409 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
domcox@1252 10 WEB_SITE="http://www.lesswatts.org/projects/powertop/"
erjo@13409 11 WGET_URL="https://01.org/powertop/sites/default/files/downloads/$TARBALL"
domcox@6097 12 TAGS="power-management"
domcox@1252 13
pascal@13411 14 DEPENDS="ncursesw pciutils libnl zlib gcc-lib-base"
pascal@13411 15 BUILD_DEPENDS="acl gettext ncursesw-dev wget autoconf automake libtool \
pascal@13411 16 pciutils-dev libnl-dev zlib-dev"
pascal@13411 17
domcox@1252 18 # Rules to configure and make the package.
domcox@1252 19 compile_rules()
domcox@1252 20 {
domcox@1252 21 cd $src
erjo@13409 22 ./autogen.sh
erjo@13409 23 ./configure && make && make install
domcox@1252 24 }
domcox@1252 25
domcox@1252 26 # Rules to gen a SliTaz package suitable for Tazpkg.
domcox@1252 27 genpkg_rules()
domcox@1252 28 {
domcox@1252 29 mkdir -p $fs/usr
pascal@13411 30 cp -a $install/usr/sbin $fs/usr
domcox@1252 31 }
domcox@1252 32