diff options
author | Harmen Stoppels <me@harmenstoppels.nl> | 2024-09-04 19:23:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-04 10:23:28 -0700 |
commit | c13e8e49fe7f0336d56b03d897bf6255470bd57e (patch) | |
tree | f3038c9b6528c2ed548b2e653b324f11f743875c | |
parent | 35a2a0b3d034f6685975272e168ae320ba2ea4f4 (diff) | |
download | spack-c13e8e49fe7f0336d56b03d897bf6255470bd57e.tar.gz spack-c13e8e49fe7f0336d56b03d897bf6255470bd57e.tar.bz2 spack-c13e8e49fe7f0336d56b03d897bf6255470bd57e.tar.xz spack-c13e8e49fe7f0336d56b03d897bf6255470bd57e.zip |
goaccess: new package (#46193)
-rw-r--r-- | var/spack/repos/builtin/packages/goaccess/package.py | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/goaccess/package.py b/var/spack/repos/builtin/packages/goaccess/package.py new file mode 100644 index 0000000000..881e7a7546 --- /dev/null +++ b/var/spack/repos/builtin/packages/goaccess/package.py @@ -0,0 +1,25 @@ +# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other +# Spack Project Developers. See the top-level COPYRIGHT file for details. +# +# SPDX-License-Identifier: (Apache-2.0 OR MIT) + +from spack.package import * + + +class Goaccess(AutotoolsPackage): + """An open source real-time web log analyzer and interactive viewer that + runs in a terminal in *nix systems or through your browser""" + + homepage = "https://goaccess.io" + url = "https://tar.goaccess.io/goaccess-1.9.3.tar.gz" + + maintainers("haampie") + + license("MIT", checked_by="haampie") + + version("1.9.3", sha256="49f0ee49e3c4a95f5f75f6806b0406746fcbf2f9ad971cae23e2ea95d3ec7837") + + depends_on("gettext") + depends_on("ncurses") + + depends_on("c", type="build") |