wok view elinks-small/receipt @ rev 15989

lynx: up to 2.8.8 and add to ARM arch
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 02 13:16:22 2014 +0100 (2014-03-02)
parents 5e9823853920
children 5d53e8ccbc8d
line source
1 # SliTaz package receipt.
3 PACKAGE="elinks-small"
4 VERSION="0.11.7"
5 CATEGORY="network"
6 SHORT_DESC="Small Elinks www text browser version (no JS SSL GPM)"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 SOURCE="elinks"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://elinks.or.cz"
12 WGET_URL="$WEB_SITE/download/$TARBALL"
13 #HOST_ARCH="i486 arm"
15 TAGS="browser web"
16 DEPENDS="bzip2 zlib libidn expat"
17 BUILD_DEPENDS="bzip2-dev zlib-dev libidn-dev expat-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --enable-small \
24 --enable-fastmem \
25 --disable-backtrace \
26 --without-gnutls \
27 --without-openssl \
28 --without-spidermonkey \
29 --without-gpm \
30 --without-x \
31 $CONFIGURE_ARGS &&
32 make && make DESTDIR=$DESTDIR install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 mkdir -p $fs/usr/bin
39 # No conflict with full elinks
40 cp -a $install/usr/bin/elinks $fs/usr/bin/elinks-small
41 }