forked from allinurl/goaccess
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Basic snapcraft.yaml proposal for iteration.
Managed to build the snap on *classic* mode relying on *legacy* geoip.
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: goaccess | ||
version: git | ||
summary: Real-time web log analyzer and interactive viewer | ||
description: | | ||
GoAccess is a real-time web log analyzer and interactive viewer that runs | ||
in a terminal in *nix systems or through your browser. | ||
confinement: classic | ||
grade: devel | ||
|
||
apps: | ||
goaccess: | ||
command: bin/goaccess | ||
|
||
parts: | ||
goaccess: | ||
plugin: autotools | ||
source: . | ||
configflags: | ||
- --enable-utf8 | ||
- --enable-geoip=legacy | ||
build-packages: | ||
- gettext | ||
- libncurses-dev | ||
- libncursesw5-dev | ||
- libglib2.0-dev | ||
- libgeoip-dev | ||
stage-packages: | ||
- libgeoip-dev | ||
|