wok view ncdu/receipt @ rev 21220

Up collectd-bind (5.8.1), foomatic-db-engine (4.0.13), freeimage (3.1.8.0), perl-datetime-format-mail (0.403)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Apr 10 13:37:55 2019 +0200 (2019-04-10)
parents 3ee81b3a3fba
children 300204973261
line source
1 # SliTaz package receipt.
3 PACKAGE="ncdu"
4 VERSION="1.13"
5 CATEGORY="utilities"
6 SHORT_DESC="NCurses Disk Usage."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://dev.yorhel.nl/ncdu"
11 WGET_URL="https://dev.yorhel.nl/download/$TARBALL"
13 DEPENDS="ncurses ncursesw"
14 BUILD_DEPENDS="ncurses-dev wget"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 --infodir=/usr/share/info \
22 --mandir=/usr/share/man \
23 $CONFIGURE_ARGS &&
24 make && make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr
31 cp -a $install/usr/bin $fs/usr
32 }