gentoo/sys-apps/shperm/shperm-1.1.ebuild

29 lines
523 B
Bash
Raw Permalink Normal View History

2024-12-06 21:54:22 +01:00
# Copyright 2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="show permissions of all directories from given path up to root"
HOMEPAGE="https://source.devloop.de/damage/shperm"
SRC_URI="https://source.devloop.de/damage/shperm/archive/${PV}.tar.gz"
2025-01-04 18:24:26 +01:00
RESTRICT="mirror"
2024-12-06 21:54:22 +01:00
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
S="${WORKDIR}/${PN}"
DEPEND=""
RDEPEND="${DEPEND}"
BDEPEND="sys-devel/gcc"
src_compile() {
gcc -o shperm shperm.c
}
src_install() {
dobin shperm
}