wok annotate ncdu/receipt @ rev 14185

asterisk: remove wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 11 19:01:08 2013 +0100 (2013-03-11)
parents 5dcaf0d39e8c
children 23c3aed67cd9
rev   line source
paul@4892 1 # SliTaz package receipt.
paul@4892 2
paul@4892 3 PACKAGE="ncdu"
paul@13509 4 VERSION="1.9"
paul@4892 5 CATEGORY="utilities"
paul@4892 6 SHORT_DESC="NCurses Disk Usage."
paul@4892 7 MAINTAINER="paul@slitaz.org"
pascal@5004 8 DEPENDS="ncurses ncursesw"
paul@4892 9 BUILD_DEPENDS="ncurses-dev"
paul@4892 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@4892 11 WEB_SITE="http://dev.yorhel.nl/ncdu"
paul@4892 12 WGET_URL="http://dev.yorhel.nl/download/$TARBALL"
paul@4892 13
paul@4892 14 # Rules to configure and make the package.
paul@4892 15 compile_rules()
paul@4892 16 {
paul@4892 17 cd $src
paul@4892 18 ./configure \
paul@4892 19 --prefix=/usr \
paul@4892 20 --infodir=/usr/share/info \
paul@4892 21 --mandir=/usr/share/man \
paul@4892 22 $CONFIGURE_ARGS &&
paul@13509 23 make && make install
paul@4892 24 }
paul@4892 25
paul@4892 26 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@4892 27 genpkg_rules()
paul@4892 28 {
paul@4892 29 mkdir -p $fs/usr
paul@13509 30 cp -a $install/usr/bin $fs/usr
paul@4892 31 }
paul@4892 32