blob: b003a0343eee3f8e786c260e0e2d08ab4cb73f1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 2022 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-i386.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-i386.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="${BROOT}"/usr/share/openpgp-keys/yoranheling.asc
QA_PREBUILT="usr/bin/ncdu-bin"
src_install() {
newbin ncdu ncdu-bin
}
|