wok annotate powertop/receipt @ rev 21874
facter: fix build
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Sep 28 11:31:06 2019 +0200 (2019-09-28) |
parents | d00dea30a0c9 |
children | 51c5bf425b07 |
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@20572 | 16 pciutils-dev libnl-dev zlib-dev gettext diffutils file" |
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 |
pascal@15359 | 22 sed -i 's/AC_PROG_LIBTOOL/AC_PROG_MKDIR_P\n&/' configure.ac |
pascal@15359 | 23 sed -i 's/(mkdir_p)/(MKDIR_P)/' po/Makefile.in.in |
erjo@13409 | 24 ./autogen.sh |
erjo@13409 | 25 ./configure && make && make install |
domcox@1252 | 26 } |
domcox@1252 | 27 |
domcox@1252 | 28 # Rules to gen a SliTaz package suitable for Tazpkg. |
domcox@1252 | 29 genpkg_rules() |
domcox@1252 | 30 { |
domcox@1252 | 31 mkdir -p $fs/usr |
pascal@13411 | 32 cp -a $install/usr/sbin $fs/usr |
domcox@1252 | 33 } |
domcox@1252 | 34 |