gentoo/sys-fs/ncdu-bin/ncdu-bin-2.9.1.ebuild
Jakov Smolić 731c334625
sys-fs/ncdu-bin: add 2.9.1
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
2025-08-28 19:31:11 +02:00

37 lines
1.1 KiB
Bash

# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit verify-sig
DESCRIPTION="NCurses Disk Usage"
HOMEPAGE="https://dev.yorhel.nl/ncdu"
SRC_URI="
amd64? ( https://dev.yorhel.nl/download/ncdu-${PV}-linux-x86_64.tar.gz )
arm? ( https://dev.yorhel.nl/download/ncdu-${PV}-linux-arm.tar.gz )
arm64? ( https://dev.yorhel.nl/download/ncdu-${PV}-linux-aarch64.tar.gz )
x86? ( https://dev.yorhel.nl/download/ncdu-${PV}-linux-x86.tar.gz )
verify-sig? (
amd64? ( https://dev.yorhel.nl/download/ncdu-${PV}-linux-x86_64.tar.gz.asc )
arm? ( https://dev.yorhel.nl/download/ncdu-${PV}-linux-arm.tar.gz.asc )
arm64? ( https://dev.yorhel.nl/download/ncdu-${PV}-linux-aarch64.tar.gz.asc )
x86? ( https://dev.yorhel.nl/download/ncdu-${PV}-linux-x86.tar.gz.asc )
)
"
S="${WORKDIR}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="-* ~amd64 ~arm ~arm64 ~x86"
BDEPEND="verify-sig? ( sec-keys/openpgp-keys-yorhel )"
VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/yoranheling.asc
QA_PREBUILT="usr/bin/ncdu-bin"
src_install() {
newbin ncdu ncdu-bin
}