wok view lynx/receipt @ rev 15002

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 21:12:16 2013 +0000 (2013-08-10)
parents 55ca23a7ba5a
children 6f52e7b054e2
line source
1 # SliTaz package receipt.
3 PACKAGE="lynx"
4 VERSION="2.8.7"
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"
10 TARBALL="$PACKAGE$VERSION.tar.gz"
11 WGET_URL="http://www.artfiles.org/lynx.isc.org/$PACKAGE$VERSION/$TARBALL"
13 DEPENDS="ncurses zlib"
14 # Will require build dep libtirpc after glibc is upgraded to 2.14.
15 BUILD_DEPENDS="openssl-dev ncurses-dev zlib-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure $CONFIGURE_ARGS \
21 --sysconfdir=/etc \
22 --mandir=/usr/share/man \
23 --enable-ipv6 \
24 --enable-gnutls-compat \
25 --enable-nls \
26 --with-ssl \
27 --with-gnutls \
28 --with-zlib \
29 --with-nss-compat &&
30 make &&
31 make install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr
39 cp -a $install/usr/bin $fs/usr
40 cp -a $install/etc $fs/
41 }