wok view ncurses-examples/receipt @ rev 18995

Add: PeaZip 6.0.0 Env:GTK2 - (peazip.org).
author Leonardo Laporte <hackdorte@sapo.pt>
date Sat Mar 19 01:26:01 2016 -0300 (2016-03-19)
parents c5fbf291c0d0
children a78610b2eb47
line source
1 # SliTaz package receipt.
3 PACKAGE="ncurses-examples"
4 VERSION="5.9"
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="http://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 }