diff options
author | David Woodfall <dave@dawoodfall.net> | 2017-10-29 22:26:53 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-11-01 07:34:01 +0700 |
commit | a3fdad860382067b6591073aed7f83cab11a55af (patch) | |
tree | 073f0be8947699983cdb5d3526efa2fe3ea5990b /network | |
parent | 857aa0bf7bafb0b84aa43f8e5c8ce6438851d19d (diff) | |
download | slackbuilds-a3fdad860382067b6591073aed7f83cab11a55af.tar.gz |
network/elinks: Switch to i586 + new README.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'network')
-rw-r--r-- | network/elinks/README | 16 | ||||
-rw-r--r-- | network/elinks/elinks.SlackBuild | 6 |
2 files changed, 18 insertions, 4 deletions
diff --git a/network/elinks/README b/network/elinks/README index 91a5cf3cb6..4f3bea0bb7 100644 --- a/network/elinks/README +++ b/network/elinks/README @@ -3,4 +3,18 @@ elinks (ELinks - Full-Featured Text WWW Browser) ELinks is an advanced and well-established feature-rich text mode web (HTTP/FTP/..) browser. ELinks can render both frames and tables, is highly customizable, and can be extended via Lua or Guile scripts. -It is very portable and runs on a variety of platforms. +It is very portable and runs on a variety of platforms. It also uses +Spider Monkey's javascript support. + +ELinks also supports the gopher protocol. + +Various support options added into this SlackBuild: + +Guile, CGI, NNTP, HTML-highlight, finger, bittorrent, gopher, +exmode, 88 colours, 256 colours, true colour. + +If you experience problems with corrupt graphics etc. it may be worth +experiementing with various $TERM variables, as well as look into the +settings for terminal options. EG: + +TERM=rxvt-unicode elinks <URL> diff --git a/network/elinks/elinks.SlackBuild b/network/elinks/elinks.SlackBuild index beec8e67e9..f24e86d95b 100644 --- a/network/elinks/elinks.SlackBuild +++ b/network/elinks/elinks.SlackBuild @@ -31,7 +31,7 @@ TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -42,8 +42,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" |