Files
gentoo/dev-db/pgbadger/pgbadger-12.1.ebuild
Aaron W. Swenson a9d6612995 dev-db/pgbadger: add 12.1
Signed-off-by: Aaron W. Swenson <titanofold@gentoo.org>
2023-06-22 07:07:20 -04:00

25 lines
451 B
Bash

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit perl-module
DESCRIPTION="pgBadger is a PostgreSQL log analyzer"
HOMEPAGE="https://pgbadger.darold.net/"
SRC_URI="https://github.com/darold/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
dev-perl/JSON-XS
dev-perl/Text-CSV_XS
"
RDEPEND="${DEPEND}"
src_test() {
prove || die
}