wok view ncurses/receipt @ rev 9487

Up: ncurses and ncursesw to 5.9.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Apr 05 12:15:41 2011 +0000 (2011-04-05)
parents f4b5d278d27b
children 35363a41f4c2
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 make && make install
36 }
38 # Rules to gen a SliTaz package suitable for Tazpkg.
39 genpkg_rules()
40 {
41 mkdir -p $fs/lib
42 cp -a $_pkg/lib/libncurses.so* $fs/lib
43 }