mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
33 lines
624 B
Bash
33 lines
624 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_COMMIT="85e252a28981d479822092bad235bb75beb7edfa"
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="A SQL/SQLI tokenizer parser analyzer"
|
|
HOMEPAGE="https://github.com/libinjection/libinjection"
|
|
SRC_URI="
|
|
https://github.com/libinjection/libinjection/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz
|
|
"
|
|
|
|
S="${WORKDIR}/${PN}-${MY_COMMIT}"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64"
|
|
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
src_prepare() {
|
|
eautoreconf
|
|
default
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${ED}" -type f -name '*.la' -delete || die
|
|
}
|