about summary refs log tree commit diff stats
path: root/tools/lynx.html
blob: f800fcc09603be3cd971b126b35eca4b3384131b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html dir="ltr" lang="en">
    <head>
        <meta charset='utf-8'>
        <title>Lynx</title>
    </head>
    <body>
        <a href="index.html">Tools Index</a>
        <h1>Lynx</h1>

        <h2>Configuration</h2>

        Default configuration is at /usr/etc/lynx.cfg

        <h2>Port</h2>
        <pre>
        # Description: Text-based web browser.
        # URL: http://lynx.isc.org/
        # Packager: LeetIO Team, silvino at bk dot ru
        # Depends on: ncurses openssl zlib

        name=lynx
        version=2.8.8
        release=1
        source=(http://lynx.isc.org/lynx$version/lynx$version.tar.bz2 lynx.cfg)

        build() {
            cd lynx${version//./-}

            ./configure \
                --prefix=/usr \
                --disable-nls \
                --enable-color-style \
                --enable-ipv6 \
                --with-ssl=/usr/lib \
                --with-zlib \
                --with-screen=ncursesw \
                --mandir=/usr/man

            make
            make -j 1 DESTDIR=$PKG install
            install -D -m 644 ../lynx.cfg $PKG/usr/etc/lynx.cfg
        }
        </pre>

        <pre>
        SET_COOKIES:FALSE
        ACCEPT_ALL_COOKIES:FALSE
        PERSISTENT_COOKIES:FALSE
        </pre>

        <a href="index.html">Tools Index</a>
        <p>
        This is part of the LeetIO System Documentation.
        Copyright (C) 2021
        LeetIO Team.
        See the file <a href="../fdl-1.3-standalone.html">Gnu Free Documentation License</a>
        for copying conditions.</p>
    </body>
</html>