wok view lynx/receipt @ rev 13569

Add blazekiss
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 03 16:17:38 2012 +0100 (2012-11-03)
parents 5fb14c079dd7
children 7896f0694ef6
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 ncurses-dev zlib-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 mkdir -p $fs/usr
38 cp -a $install/usr/bin $fs/usr
39 cp -a $install/etc $fs/
40 }