28 lines
442 B
Bash
28 lines
442 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
EGIT_REPO_URI="https://mrrp.sx7n8.tech/soccera/rdo.git"
|
|
|
|
inherit git-r3
|
|
|
|
DESCRIPTION="A slim alternative to sudo and doas"
|
|
HOMEPAGE="https://codeberg.org/sw1tchbl4d3/rdo"
|
|
SRC_URI=""
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND=""
|
|
|
|
src_compile() {
|
|
emake
|
|
}
|
|
|
|
src_install() {
|
|
emake install DESTDIR="${D}"
|
|
}
|