wok-next view lynx/receipt @ rev 20691

aescrypt: add option for SHA256sum
author Erkan Yilmaz <erkan@slitaz.org>
date Mon May 21 19:42:16 2018 +0000 (2018-05-21)
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 }