wok-next view lynx/receipt @ rev 21726

updated firefox-official (77.0 -> 81.0)
author Hans-G?nter Theisgen
date Sun Sep 27 14:34:31 2020 +0100 (2020-09-27)
parents 89617d35ca0c
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="lynx"
4 VERSION="2.8.9rel1"
5 CATEGORY="network"
6 SHORT_DESC="Terminal-based text-only browser"
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://lynx.browser.org"
11 TARBALL="$PACKAGE${VERSION/rel/rel.}.tar.bz2"
12 WGET_URL="https://invisible-mirror.net/archives/$PACKAGE/tarballs/$TARBALL"
14 # Will require build dep libtirpc after glibc is upgraded to 2.14.
15 BUILD_DEPENDS="ncurses-dev openssl-dev gettext zlib-dev"
17 compile_rules()
18 {
19 ./configure \
20 --enable-gnutls-compat \
21 --enable-ipv6 \
22 --enable-nls \
23 --with-gnutls \
24 --with-nss-compat \
25 --with-ssl \
26 --with-zlib \
27 $CONFIGURE_ARGS &&
28 make &&
29 make install
30 }
32 testsuite()
33 {
34 readelf -h $install/usr/bin/lynx
35 }
37 genpkg_rules()
38 {
39 copy @std
40 DEPENDS="ncurses openssl zlib"
41 }