wok-next view elinks-small/receipt @ rev 21020
Cleaning is almost finished... I should proceed to upgrades.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Nov 02 14:15:08 2018 +0200 (2018-11-02) |
parents | d958fec46c9f |
children |
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="devel@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"
16 BUILD_DEPENDS="bzip2-dev zlib-dev libidn-dev expat-dev"
18 compile_rules() {
19 ./configure \
20 --enable-small \
21 --enable-fastmem \
22 --disable-backtrace \
23 --without-gnutls \
24 --without-openssl \
25 --without-spidermonkey \
26 --without-gpm \
27 --without-x \
28 $CONFIGURE_ARGS &&
29 make &&
30 make DESTDIR=$install install
31 }
33 genpkg_rules() {
34 mkdir -p $fs/usr/bin
35 # No conflict with full elinks
36 cp -a $install/usr/bin/elinks $fs/usr/bin/elinks-small
37 DEPENDS="bzip2 zlib libidn expat"
38 TAGS="web-browser browser web"
39 }