wok diff elinks/receipt @ rev 17273

tazwikiss: tiny edit
author Richard Dunbar <mojo@slitaz.org>
date Fri Oct 24 12:53:14 2014 -0400 (2014-10-24)
parents 7896f0694ef6
children 5d53e8ccbc8d
line diff
     1.1 --- a/elinks/receipt	Sat Aug 10 21:12:16 2013 +0000
     1.2 +++ b/elinks/receipt	Fri Oct 24 12:53:14 2014 -0400
     1.3 @@ -11,16 +11,21 @@
     1.4  WGET_URL="$WEB_SITE/download/$TARBALL"
     1.5  TAGS="browser"
     1.6  
     1.7 -DEPENDS="openssl bzip2 spidermonkey xorg-libX11 zlib libidn expat \
     1.8 -xorg-libXau xorg-libXdmcp"
     1.9 -BUILD_DEPENDS="openssl-dev bzip2-dev spidermonkey-dev libidn-dev expat-dev \
    1.10 -xorg-libXau-dev xorg-libXdmcp-dev"
    1.11 +DEPENDS="openssl bzip2 spidermonkey zlib libidn expat gpm"
    1.12 +BUILD_DEPENDS="openssl-dev bzip2-dev spidermonkey-dev zlib-dev libidn-dev \
    1.13 +expat-dev gpm-dev"
    1.14  
    1.15  # Rules to configure and make the package.
    1.16  compile_rules()
    1.17  {
    1.18 -	cd $src
    1.19 -	./configure $CONFIGURE_ARGS && 
    1.20 +	# --enable-fastmem: disables internal `malloc()` debugging and 
    1.21 +	# use `alloca()` wherever possible.
    1.22 +	# --disable-backtrace disables internal backtrace code.
    1.23 +	./configure \
    1.24 +		--enable-fastmem \
    1.25 +		--disable-backtrace \
    1.26 +		--without-x \
    1.27 +		$CONFIGURE_ARGS && 
    1.28  	make && make DESTDIR=$DESTDIR install
    1.29  }
    1.30  
    1.31 @@ -30,4 +35,3 @@
    1.32  	mkdir -p $fs/usr
    1.33  	cp -a $install/usr/bin $fs/usr
    1.34  }
    1.35 -