wok-next view ncdu/receipt @ rev 20533

cairo-clock, grub4dos: fix CFLAGS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 27 12:50:45 2018 +0200 (2018-03-27)
parents 6c12ac1293fc
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="ncdu"
4 VERSION="1.12"
5 CATEGORY="utilities"
6 SHORT_DESC="NCurses Disk Usage"
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://dev.yorhel.nl/ncdu"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://dev.yorhel.nl/download/$TARBALL"
14 BUILD_DEPENDS="ncurses-dev"
16 compile_rules() {
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 genpkg_rules() {
26 copy @std
27 DEPENDS="ncurses"
28 }