wok view ncurses-examples/receipt @ rev 21529

Up ncurses-examples (6.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 04 17:37:51 2019 +0200 (2019-05-04)
parents a78610b2eb47
children 2108133c0c1f
line source
1 # SliTaz package receipt.
3 PACKAGE="ncurses-examples"
4 VERSION="6.1"
5 CATEGORY="base-system"
6 SHORT_DESC="Ncurses test functions."
7 MAINTAINER="paul@slitaz.org"
8 TARBALL="$PACKAGE.tar.gz"
9 LICENSE="MIT"
10 WEB_SITE="https://invisible-island.net/ncurses/ncurses-examples.html"
11 WGET_URL="ftp://invisible-island.net/ncurses-examples/$TARBALL"
13 DEPENDS="ncurses"
14 BUILD_DEPENDS="ncurses-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 export LDFLAGS="$LDFLAGS -ltinfo"
20 ./configure \
21 $CONFIGURE_ARGS &&
22 make && make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }