wok-next view elinks-small/receipt @ rev 20957

Random updates
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Sep 05 15:26:05 2018 +0300 (2018-09-05)
parents c4e53a39395a
children d5aab818505e
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 WEB_SITE="http://elinks.or.cz"
10 REPOLOGY="elinks"
12 SOURCE="elinks"
13 TARBALL="$SOURCE-$VERSION.tar.bz2"
14 WGET_URL="$WEB_SITE/download/$TARBALL"
15 TAGS="web-browser"
17 TAGS="browser web"
18 DEPENDS="bzip2 zlib libidn expat"
19 BUILD_DEPENDS="bzip2-dev zlib-dev libidn-dev expat-dev"
21 # Rules to configure and make the package.
22 compile_rules()
23 {
24 ./configure \
25 --enable-small \
26 --enable-fastmem \
27 --disable-backtrace \
28 --without-gnutls \
29 --without-openssl \
30 --without-spidermonkey \
31 --without-gpm \
32 --without-x \
33 $CONFIGURE_ARGS &&
34 make && make DESTDIR=$DESTDIR install
35 }
37 # Rules to gen a SliTaz package suitable for Tazpkg.
38 genpkg_rules()
39 {
40 mkdir -p $fs/usr/bin
41 # No conflict with full elinks
42 cp -a $install/usr/bin/elinks $fs/usr/bin/elinks-small
43 }