wok view elinks-small/receipt @ rev 21549

Add LXSession 0.4.6.* as lxsession046 (latest LXSession 0.4.* is 0.4.9.* and it don't compile anyway due to the old libgee; and latest LXSession 0.5.* (just lxsession) has the major drawbacks)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue May 07 11:25:44 2019 +0300 (2019-05-07)
parents 5d53e8ccbc8d
children 83b97236db32
line source
1 # SliTaz package receipt.
3 PACKAGE="elinks-small"
4 VERSION="0.12pre6"
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 TAGS="web-browser"
14 #HOST_ARCH="i486 arm"
16 TAGS="browser web"
17 DEPENDS="bzip2 zlib libidn expat"
18 BUILD_DEPENDS="bzip2-dev zlib-dev libidn-dev expat-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --enable-small \
25 --enable-fastmem \
26 --disable-backtrace \
27 --without-gnutls \
28 --without-openssl \
29 --without-spidermonkey \
30 --without-gpm \
31 --without-x \
32 $CONFIGURE_ARGS &&
33 make && make DESTDIR=$DESTDIR install
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/bin
40 # No conflict with full elinks
41 cp -a $install/usr/bin/elinks $fs/usr/bin/elinks-small
42 }