wok view lynx/receipt @ rev 11801

syslinux: fix ifmem.c
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 25 11:52:40 2012 +0100 (2012-02-25)
parents
children d105cf01b53e
line source
1 # SliTaz package receipt.
3 PACKAGE="lynx"
4 VERSION="2.8.7"
5 CATEGORY="network"
6 SHORT_DESC="Terminal-based text-only browser."
7 MAINTAINER="samuel_trassare@yahoo.com"
8 WEB_SITE="http://lynx.isc.org"
9 TARBALL="$PACKAGE$VERSION.tar.gz"
10 WGET_URL="http://www.artfiles.org/lynx.isc.org/$PACKAGE$VERSION/$TARBALL"
12 DEPENDS="ncurses zlib"
13 # Will require build dep libtirpc after glibc is upgraded to 2.14.
14 BUILD_DEPENDS="openssl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS \
20 --enable-ipv6 \
21 --enable-gnutls-compat \
22 --enable-nls \
23 --with-ssl \
24 --with-gnutls \
25 --with-zlib \
26 --with-nss-compat &&
27 make &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 cp -a $install/* $fs
35 }