mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 13:41:05 +00:00
Sorry, I've uploaded the distfile myself when bumping but forgot to tweak SRC_URI. Also, drop obsolete USE=pie while here as the eclass handles it. Closes: https://bugs.gentoo.org/962706 Signed-off-by: Sam James <sam@gentoo.org>
27 lines
618 B
Bash
27 lines
618 B
Bash
# Copyright 2022-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit go-module
|
|
|
|
DESCRIPTION="Disk Usage/Free Utility - a better 'df' alternative"
|
|
HOMEPAGE="https://github.com/muesli/duf"
|
|
SRC_URI="https://github.com/muesli/duf/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
SRC_URI+=" https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-deps.tar.xz"
|
|
|
|
LICENSE="MIT BSD Apache-2.0"
|
|
# Dependent licenses
|
|
LICENSE+=" Apache-2.0 BSD MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~arm64"
|
|
|
|
src_compile() {
|
|
ego build
|
|
}
|
|
|
|
src_install() {
|
|
dobin duf
|
|
dodoc README.md
|
|
doman duf.1
|
|
}
|