version bump 1.1

This commit is contained in:
2024-12-06 21:54:22 +01:00
parent 7695e37b09
commit 90cc7be26b
2 changed files with 28 additions and 0 deletions

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
}