wok view ncurses/receipt @ rev 11233

Up iron-linux (14.0.850.0)
author Paul Issott <paul@slitaz.org>
date Sun Nov 06 09:51:48 2011 +0000 (2011-11-06)
parents 35363a41f4c2
children 92bae5620673
line source
1 # SliTaz package receipt.
3 PACKAGE="ncurses"
4 VERSION="5.9"
5 CATEGORY="base-system"
6 SHORT_DESC="Library of functions to manage display on terminals."
7 DEPENDS="ncurses-common"
8 BUILD_DEPENDS="gcc"
9 MAINTAINER="pankso@slitaz.org"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://invisible-island.net/ncurses/"
12 WGET_URL="ftp://invisible-island.net/ncurses/$TARBALL"
14 # Rules to compile & install the temporary toolchain.
15 cook_tmp_toolchain()
16 {
17 cd $src
18 ./configure --with-shared --without-debug \
19 --without-ada --enable-overwrite &&
20 make && make install
21 }
23 # Rules to configure and make the package.
24 compile_rules()
25 {
26 cd $src
27 sed -i 's|\tsh $(srcdir)/MKhashsize.sh|\tash $(srcdir)/MKhashsize.sh|' \
28 include/Makefile.in
29 ./configure \
30 --libdir=/lib \
31 --sysconfdir=/etc \
32 --with-shared \
33 --without-debug \
34 --without-ada \
35 --build=$HOST_SYSTEM \
36 --host=$HOST_SYSTEM &&
37 make && make install
38 }
40 # Rules to gen a SliTaz package suitable for Tazpkg.
41 genpkg_rules()
42 {
43 mkdir -p $fs/lib
44 cp -a $_pkg/lib/libncurses.so* $fs/lib
45 }