View Raw Ebuild
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="An offline tool for querying IP geographic information and CDN provider."
HOMEPAGE="https://github.com/zu1k/nali"
SRC_URI="
https://github.com/zu1k/nali/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
https://github.com/gentoo-zh-drafts/nali/releases/download/v${PV}/${P}-vendor.tar.xz
-> ${P}-vendor.golang-dist-mirror-action.tar.xz
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
src_compile() {
local ldflags="
-X github.com/zu1k/nali/internal/constant.Version=${PV}
"
ego build -ldflags "${ldflags}"
}
src_install() {
dobin ${PN}
}