wok-next view lynx/receipt @ rev 21118

keyutils, ecryptfs-utils, ecryptfs-simple
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Jan 14 00:47:19 2019 +0200 (2019-01-14)
parents 757d032c55c7
children 89617d35ca0c
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="devel@slitaz.org"
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"
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 }