wok view ncurses/receipt @ rev 10235

Up: libdrm to 2.4.25.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 21 00:36:13 2011 +0000 (2011-05-21)
parents 70c50cf7bbf2
children ef827f291143
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 $CONFIGURE_ARGS &&
36 make && make install
37 }
39 # Rules to gen a SliTaz package suitable for Tazpkg.
40 genpkg_rules()
41 {
42 mkdir -p $fs/lib
43 cp -a $_pkg/lib/libncurses.so* $fs/lib
44 }