add shperm ebuild

This commit is contained in:
damage 2024-09-28 19:27:04 +02:00
parent 81484ace38
commit 7695e37b09
2 changed files with 28 additions and 0 deletions

2
sys-apps/shperm/Manifest Normal file
View File

@ -0,0 +1,2 @@
DIST 1.0.tar.gz 13472 BLAKE2B b1d2a897f9a531d208cb3529c377b161cd59ad3ad9e7a63795560edee69c64e5b9fa3ddaca367fb91c2db129b7adab3e22d70291cd3b6b9c07e5a1c80bd3be11 SHA512 918d698fe0011dd8872c4c33d079c2bb41cb49113f0ef6591dfd8f1e449058ec605bb1ee2ea45f1704be278d910d329bd5dedde821277285a15d9d810d2a447a
EBUILD shperm-1.0.ebuild 504 BLAKE2B d092ef9ba5b1d3c72c7a5aca418c816cb08fa791bead3b21bd66edd63803a0aae3147a498c40f6ee7f4a7f50fe222275c52c4a2d63a92e85b5a569e220dc8477 SHA512 bd4c9523672b81dab163c299c56676a8bb224925087a0ed915d426fd93fddf76a0083ae5d5fe4ae1af00bd7f7e5effddee559c16aedfaee28f54f698aa6feb30

View File

@ -0,0 +1,26 @@
# 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"
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
}