wok-next annotate ncdu/receipt @ rev 21020

Cleaning is almost finished... I should proceed to upgrades.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Nov 02 14:15:08 2018 +0200 (2018-11-02)
parents d43bf7aae921
children
rev   line source
al@20513 1 # SliTaz package receipt v2.
paul@4892 2
paul@4892 3 PACKAGE="ncdu"
paul@19434 4 VERSION="1.12"
paul@4892 5 CATEGORY="utilities"
al@20513 6 SHORT_DESC="NCurses Disk Usage"
paul@4892 7 MAINTAINER="paul@slitaz.org"
pascal@15601 8 LICENSE="MIT"
al@20513 9 WEB_SITE="https://dev.yorhel.nl/ncdu"
al@20513 10
paul@4892 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
paul@19353 12 WGET_URL="https://dev.yorhel.nl/download/$TARBALL"
paul@4892 13
al@20513 14 BUILD_DEPENDS="ncurses-dev"
pascal@15601 15
al@20513 16 compile_rules() {
paul@4892 17 ./configure \
paul@4892 18 --prefix=/usr \
paul@4892 19 --infodir=/usr/share/info \
paul@4892 20 --mandir=/usr/share/man \
paul@4892 21 $CONFIGURE_ARGS &&
al@21020 22 make &&
al@21020 23 make install
paul@4892 24 }
paul@4892 25
al@20513 26 genpkg_rules() {
al@20513 27 copy @std
al@20513 28 DEPENDS="ncurses"
paul@4892 29 }