wok view lynx/receipt @ rev 12339

acl: Remove slitaz-toolchain from build depends. It should be installed in chroot.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Apr 19 09:12:10 2012 +0000 (2012-04-19)
parents 8532d13b4310
children 5fb14c079dd7
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 --sysconfdir=/etc \
21 --mandir=/usr/share/man \
22 --enable-ipv6 \
23 --enable-gnutls-compat \
24 --enable-nls \
25 --with-ssl \
26 --with-gnutls \
27 --with-zlib \
28 --with-nss-compat &&
29 make &&
30 make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 cp -a $install/* $fs
37 }