diff options
author | David Woodfall <dave@dawoodfall.net> | 2017-11-30 21:55:02 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-12-02 06:31:05 +0700 |
commit | 08b044fcddda4280f5ca3ca69db7a6748a222a6b (patch) | |
tree | 9c3fd5d5400d70e43f672908a5634d934c447b89 /network/elinks/elinks.SlackBuild | |
parent | 1447dddb4dba74a6b752ecd37c70befa71be19e4 (diff) |
network/elinks: Patched to fix gopher index queries.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'network/elinks/elinks.SlackBuild')
-rw-r--r-- | network/elinks/elinks.SlackBuild | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/network/elinks/elinks.SlackBuild b/network/elinks/elinks.SlackBuild index 4e01d232d48d..24505e81ffc2 100644 --- a/network/elinks/elinks.SlackBuild +++ b/network/elinks/elinks.SlackBuild @@ -26,7 +26,7 @@ PRGNAM=elinks VERSION=${VERSION:-git20131231} -BUILD=${BUILD:-4} +BUILD=${BUILD:-6} TAG=${TAG:-_SBo} if [ -z "$ARCH" ]; then @@ -71,7 +71,11 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -patch --verbose -p1 < $CWD/gopher-html.patch +# Next patch fixes URL: html links +patch --verbose -p1 < $CWD/gopher_html_links.patch + +# Next patch fixes index queries +patch --verbose -p1 < $CWD/gopher_index_queries.patch [ -n "$NOMOUSE" ] && mouse="--disable-mouse" [ -n "$NOGPM" ] && gpm="--without-gpm" |