wok diff lynx/receipt @ rev 11769

up midori (0.4.3) and added description
author Samuel Trassare <samuel_trassare@yahoo.com>
date Wed Feb 22 20:48:36 2012 -0800 (2012-02-22)
parents
children d105cf01b53e
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lynx/receipt	Wed Feb 22 20:48:36 2012 -0800
     1.3 @@ -0,0 +1,35 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="lynx"
     1.7 +VERSION="2.8.7"
     1.8 +CATEGORY="network"
     1.9 +SHORT_DESC="Terminal-based text-only browser."
    1.10 +MAINTAINER="samuel_trassare@yahoo.com"
    1.11 +WEB_SITE="http://lynx.isc.org"
    1.12 +TARBALL="$PACKAGE$VERSION.tar.gz"
    1.13 +WGET_URL="http://www.artfiles.org/lynx.isc.org/$PACKAGE$VERSION/$TARBALL"
    1.14 +
    1.15 +DEPENDS="ncurses zlib"
    1.16 +# Will require build dep libtirpc after glibc is upgraded to 2.14.
    1.17 +BUILD_DEPENDS="openssl-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	./configure $CONFIGURE_ARGS \
    1.23 +	   --enable-ipv6 \
    1.24 +	   --enable-gnutls-compat \
    1.25 +	   --enable-nls \
    1.26 +	   --with-ssl \
    1.27 +	   --with-gnutls \
    1.28 +	   --with-zlib \
    1.29 +	   --with-nss-compat &&
    1.30 +	make && 
    1.31 +	make install
    1.32 +}
    1.33 +
    1.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.35 +genpkg_rules()
    1.36 +{
    1.37 +	cp -a $install/* $fs
    1.38 +}