# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DESCRIPTION="Community driven mirror of systemd hwdb"
HOMEPAGE="https://git.pinkro.se/Rose/gardenhouse/hwdb.git/about/"

if [ ${PV} = 999999999999 ]; then
	inherit git-r3
	EGIT_REPO_URI="https://git.pinkro.se/Rose/gardenhouse/hwdb.git"
	KEYWORDS=""
else
	SRC_URI="https://git.pinkro.se/Rose/gardenhouse/hwdb.git/snapshot/${P}.tar.gz"
	KEYWORDS="~amd64"
fi

LICENSE="LGPL-2+"
SLOT="0"
IUSE=""

DEPEND=""
RDEPEND=""
BDEPEND="
	app-alternatives/awk
"

src_compile() {
	./scripts/build.sh
}

src_install() {
	insinto /usr/lib/udev/hwdb.d
	doins -r dist/
}