sys-apps/su - 9999 (nymphos)

Search

Install

Install this version:

emerge -a =sys-apps/su-9999

If this version is masked, you can unmask it using the autounmask tool or standard emerge options:

autounmask =sys-apps/su-9999

Or alternatively:

emerge --autounmask-write -a =sys-apps/su-9999

Package Information

Description:
su from ubase
Homepage:
https://core.suckless.org/ubase/
License:
MIT

Ebuild Details

Version EAPI Keywords Slot
9999 8 0
View Raw Ebuild
# Copyright 2026 NymphOS Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

inherit git-r3

DESCRIPTION="su from ubase"
HOMEPAGE="https://core.suckless.org/ubase/"
EGIT_REPO_URI="git://git.suckless.org/ubase"

LICENSE="MIT"
SLOT="0"

src_compile() {
	emake "${PN}"
}

src_install() {
	dobin "${PN}"
	fperms u+s "/usr/bin/${PN}"
	doman "${PN}.1"
}

Inherited Eclasses