source: custom/examples/963-lynx@ 837362b

ablfs-more legacy trunk
Last change on this file since 837362b was fd4a798, checked in by Pierre Labastie <pierre.labastie@…>, 3 years ago

Remove $Id$ comments, they are useless with git

  • Property mode set to 100644
File size: 822 bytes
Line 
1# Lynx is a text based web browser.
2#
3
4PKG="lynx"
5PKG_VERSION="2.8.8rel.2"
6PKG_FILE="lynx${PKG_VERSION}.tar.bz2"
7URL="ftp://lynx.isc.org/${PKG_FILE}"
8MD5="b231c2aa34dfe7ca25681ef4e55ee7e8"
9for i in PATCH{1..10}; do
10 unset $i
11done
12
13( cat << "xEOFx"
14
15./configure --prefix=/usr \
16 --sysconfdir=/etc/lynx \
17 --datadir=/usr/share/doc/lynx-2.8.8rel.2 \
18 --with-zlib \
19 --with-bzlib \
20 --with-screen=ncursesw \
21 --enable-locale-charset &&
22make
23
24make install-full &&
25chgrp -v -R root /usr/share/doc/lynx-2.8.8rel.2/lynx_doc
26
27sed -i 's/#\(LOCALE_CHARSET\):FALSE/\1:TRUE/' /etc/lynx/lynx.cfg
28sed -i 's/#\(DEFAULT_EDITOR\):/\1:vi/' /etc/lynx/lynx.cfg
29sed -i 's/#\(PERSISTENT_COOKIES\):FALSE/\1:TRUE/' /etc/lynx/lynx.cfg
30
31xEOFx
32) > tmp
Note: See TracBrowser for help on using the repository browser.