wok-current rev 11743
added lynx (2.8.7)
author | Samuel Trassare <samuel_trassare@yahoo.com> |
---|---|
date | Tue Feb 21 17:29:08 2012 -0800 (2012-02-21) |
parents | c800cc431915 |
children | dc60074c12a1 04e8cd2fc52d |
files | lynx/description.txt lynx/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/lynx/description.txt Tue Feb 21 17:29:08 2012 -0800 1.3 @@ -0,0 +1,2 @@ 1.4 +Lynx is a very configurable text-based web browser for use on cursor-addressable 1.5 +character cell terminals.
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/lynx/receipt Tue Feb 21 17:29:08 2012 -0800 2.3 @@ -0,0 +1,35 @@ 2.4 +# SliTaz package receipt. 2.5 + 2.6 +PACKAGE="lynx" 2.7 +VERSION="2.8.7" 2.8 +CATEGORY="network" 2.9 +SHORT_DESC="Terminal-based text-only browser." 2.10 +MAINTAINER="samuel_trassare@yahoo.com" 2.11 +WEB_SITE="http://lynx.isc.org" 2.12 +TARBALL="$PACKAGE$VERSION.tar.gz" 2.13 +WGET_URL="http://www.artfiles.org/lynx.isc.org/$PACKAGE$VERSION/$TARBALL" 2.14 + 2.15 +DEPENDS="ncurses zlib" 2.16 +# Will require build dep libtirpc after glibc is upgraded to 2.14. 2.17 +BUILD_DEPENDS="openssl-dev" 2.18 + 2.19 +# Rules to configure and make the package. 2.20 +compile_rules() 2.21 +{ 2.22 + ./configure $CONFIGURE_ARGS \ 2.23 + --enable-ipv6 \ 2.24 + --enable-gnutls-compat \ 2.25 + --enable-nls \ 2.26 + --with-ssl \ 2.27 + --with-gnutls \ 2.28 + --with-zlib \ 2.29 + --with-nss-compat && 2.30 + make && 2.31 + make install 2.32 +} 2.33 + 2.34 +# Rules to gen a SliTaz package suitable for Tazpkg. 2.35 +genpkg_rules() 2.36 +{ 2.37 + cp -a $install/* $fs 2.38 +}