wok annotate ncdu/receipt @ rev 20066

busybox: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 23 14:24:16 2017 +0200 (2017-09-23)
parents 81ff44a16feb
children 2e46d946d7a8
rev   line source
paul@4892 1 # SliTaz package receipt.
paul@4892 2
paul@4892 3 PACKAGE="ncdu"
paul@19434 4 VERSION="1.12"
paul@4892 5 CATEGORY="utilities"
paul@4892 6 SHORT_DESC="NCurses Disk Usage."
paul@4892 7 MAINTAINER="paul@slitaz.org"
pascal@15601 8 LICENSE="MIT"
paul@4892 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@19353 10 WEB_SITE="https://dev.yorhel.nl/ncdu"
paul@19353 11 WGET_URL="https://dev.yorhel.nl/download/$TARBALL"
paul@4892 12
pascal@15601 13 DEPENDS="ncurses ncursesw"
paul@19353 14 BUILD_DEPENDS="ncurses-dev wget"
pascal@15601 15
paul@4892 16 # Rules to configure and make the package.
paul@4892 17 compile_rules()
paul@4892 18 {
paul@4892 19 cd $src
paul@4892 20 ./configure \
paul@4892 21 --prefix=/usr \
paul@4892 22 --infodir=/usr/share/info \
paul@4892 23 --mandir=/usr/share/man \
paul@4892 24 $CONFIGURE_ARGS &&
paul@13509 25 make && make install
paul@4892 26 }
paul@4892 27
paul@4892 28 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@4892 29 genpkg_rules()
paul@4892 30 {
paul@4892 31 mkdir -p $fs/usr
paul@13509 32 cp -a $install/usr/bin $fs/usr
paul@4892 33 }
paul@4892 34