wok view texinfo/receipt @ rev 17677

texinfo: add missing -ltinfo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 18 11:52:09 2015 +0100 (2015-02-18)
parents 3ba8d2c9720d
children 71360a13cd94
line source
1 # SliTaz package receipt.
3 PACKAGE="texinfo"
4 VERSION="4.13a"
5 CATEGORY="development"
6 SHORT_DESC="GNU documentation tools."
7 MAINTAINER="rcx@zoominternet.net"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/texinfo/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
12 TAGS="documentation"
14 DEPENDS="ncurses"
15 BUILD_DEPENDS="ncurses-dev"
17 # Rules to compile & install the temporary toolchain by Tazwok.
18 cook_tmp_toolchain()
19 {
20 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -ltinfo"
21 ./configure &&
22 make $MAKEFLAGS &&
23 make install
24 }
26 # Rules to configure and make the package.
27 compile_rules()
28 {
29 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -ltinfo"
30 ./configure $CONFIGURE_ARGS &&
31 make && make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/share
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/usr/share/$PACKAGE $fs/usr/share
40 }