wok-next view lynx/receipt @ rev 20709

cdrdao: add patch.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 26 17:09:29 2018 +0300 (2018-05-26)
parents c4e53a39395a
children d5aab818505e
line source
1 # SliTaz package receipt v2.
3 PACKAGE="lynx"
4 VERSION="2.8.8"
5 CATEGORY="network"
6 SHORT_DESC="Terminal-based text-only browser"
7 MAINTAINER="samuel_trassare@yahoo.com"
8 LICENSE="GPL2"
9 WEB_SITE="http://lynx.isc.org"
11 TARBALL="$PACKAGE$VERSION.tar.gz"
12 WGET_URL="http://lynx.isc.org/$PACKAGE$VERSION/$TARBALL"
14 # Will require build dep libtirpc after glibc is upgraded to 2.14.
15 BUILD_DEPENDS="openssl-dev ncurses-dev zlib-dev gettext-tools"
17 compile_rules() {
18 ./configure \
19 --enable-ipv6 \
20 --enable-gnutls-compat \
21 --enable-nls \
22 --with-ssl \
23 --with-gnutls \
24 --with-zlib \
25 --with-nss-compat \
26 $CONFIGURE_ARGS &&
27 make &&
28 make install
29 }
31 testsuite() {
32 readelf -h $install/usr/bin/lynx
33 }
35 genpkg_rules() {
36 copy @std
37 DEPENDS="openssl ncurses zlib"
38 }