wok view elinks-small/receipt @ rev 18278

Up elinks (0.12pre6)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Sat Aug 08 19:55:49 2015 +0200 (2015-08-08)
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 }