system/goaccess: Updated for version 1.3.

Signed-off-by: Dave Woodfall <dave@slackbuilds.org>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Dave Woodfall 2020-05-12 03:42:43 +01:00 committed by Willy Sudiarto Raharjo
parent 79a7a48825
commit ec3ec90337
No known key found for this signature in database
GPG key ID: 3F617144D7238786
3 changed files with 23 additions and 25 deletions

View file

@ -1,28 +1,29 @@
Goaccess is an open source real-time Apache log analyzer and
Goaccess is an open source real-time Apache log analyser and
interactive viewer that runs in a terminal in *nix systems.
It provides fast and valuable HTTP statistics for system
administrators that require a visual server report on the fly.
administrators that require a visual server report on the
fly.
Optional:
GeoIP:
Goaccess now supports two types of GeoIP - legacy and mmdb.
Goaccess supports two types of GeoIP - legacy and mmdb.
If you want to add GeoIP support, pass either option to the
slackbuild:
GEOIP=legacy ./goaccess.SlackBuild
GEOIP=mmdb ./goaccess.SlackBuild
(Requires GeoIP)
At the moment, mmdb is not on slackbuilds.org.
GEOIP=mmdb ./goaccess.SlackBuild
(Requires libmaxminddb)
TokyoCabinet:
Goaccess supports Tokyo Cabinet and Tokyo Cabinet's on-disk B+ Tree
database.
Goaccess supports Tokyo Cabinet and Tokyo Cabinet's on-disk
B+ Tree database.
The options are:
TCB=memhash ./goaccess.SlackBuild
TCB=btree ./goaccess.SlackBuild
(Both require tokyocabinet)

View file

@ -2,7 +2,7 @@
# Slackware build script for goaccess
# Copyright David Woodfall <dave@slackbuilds.org>
# Copyright Dave Woodfall <dave@slackbuilds.org>
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
@ -23,8 +23,8 @@
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM=goaccess
VERSION=${VERSION:-1.2}
BUILD=${BUILD:-2}
VERSION=${VERSION:-1.3}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
if [ -z "$ARCH" ]; then
@ -54,13 +54,8 @@ else
LIBDIRSUFFIX=""
fi
if [ -n "$GEOIP" ]; then
geoip="--enable-geoip=$GEOIP"
fi
if [ -n "$TCB" ]; then
tcb="--enable-tcb=$TCB"
fi
geoip="--enable-geoip=${GEOIP:-no}"
tcb="--enable-tcb=${TCB:-no}"
set -e
@ -103,10 +98,12 @@ find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | gr
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mv $PKG/etc/goaccess.conf $PKG/etc/goaccess.conf.new
install -D -m644 config/goaccess.conf $PKG/etc/goaccess.conf.new
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README TODO $PKG/usr/doc/$PRGNAM-$VERSION
cp -a \
AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
mkdir -p $PKG/install

View file

@ -1,10 +1,10 @@
PRGNAM="goaccess"
VERSION="1.2"
VERSION="1.3"
HOMEPAGE="http://goaccess.prosoftcorp.com"
DOWNLOAD="http://tar.goaccess.io/goaccess-1.2.tar.gz"
MD5SUM="00f41cf1fb72cfc459984c0fb087333d"
DOWNLOAD="http://tar.goaccess.io/goaccess-1.3.tar.gz"
MD5SUM="5209c5d4e9e04b5b3e7f13134c5e146c"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="David Woodfall"
MAINTAINER="Dave Woodfall"
EMAIL="dave@slackbuilds.org"