summaryrefslogtreecommitdiff
path: root/sys-fs/duf/duf-0.8.1.ebuild
blob: 9f64f0d84c61976a60954ef2168d91956abf9f3d (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
# Copyright 2022-2023 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://github.com/mrmagic223325/deps/releases/download/${P}/${P}-deps.tar.xz"

LICENSE="MIT BSD Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="pie"

src_compile() {
	use pie && GOFLAGS+=" -buildmode=pie"
	ego build
}

src_install() {
	dobin duf
	dodoc README.md
	doman duf.1
}