wok-6.x annotate yacpi/receipt @ rev 15226
goffice: remove wrong error trigger
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Sep 22 18:06:29 2013 +0200 (2013-09-22) |
parents | 2d7ca3af31c4 |
children | 3ba8d2c9720d |
rev | line source |
---|---|
paul@14085 | 1 # SliTaz package receipt. |
paul@14085 | 2 |
paul@14085 | 3 PACKAGE="yacpi" |
paul@14085 | 4 VERSION="3.0.1" |
paul@14085 | 5 CATEGORY="utilities" |
paul@14085 | 6 SHORT_DESC="Yet Another Configuration and Power Interface." |
paul@14085 | 7 MAINTAINER="paul@slitaz.org" |
pascal@15000 | 8 LICENSE="GPL2" |
paul@14085 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
paul@14085 | 10 WEB_SITE="http://www.ngolde.de/yacpi.html" |
paul@14085 | 11 WGET_URL="http://www.ngolde.de/download/$TARBALL" |
paul@14085 | 12 |
pascal@15000 | 13 DEPENDS="ncurses libacpi" |
pascal@15000 | 14 BUILD_DEPENDS="ncurses-dev libacpi-dev" |
pascal@15000 | 15 |
paul@14085 | 16 # Rules to configure and make the package. |
paul@14085 | 17 compile_rules() |
paul@14085 | 18 { |
paul@14085 | 19 cd $src |
paul@14085 | 20 make |
paul@14085 | 21 } |
paul@14085 | 22 |
paul@14085 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@14085 | 24 genpkg_rules() |
paul@14085 | 25 { |
paul@14085 | 26 mkdir -p $fs/usr/bin |
paul@14085 | 27 cp -a $src/$PACKAGE $fs/usr/bin |
paul@14085 | 28 } |
paul@14085 | 29 |