Files
guru/app-containers/arachsys-containers/arachsys-containers-1.7.ebuild
2024-05-19 15:28:53 -03:00

29 lines
649 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
MY_PN="${PN#arachsys-}"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Simple containers using Linux user namespaces"
HOMEPAGE="https://arachsys.github.io"
SRC_URI="https://github.com/arachsys/${MY_PN}/archive/refs/tags/${MY_P}.tar.gz"
# weird tag names
S="${WORKDIR}/${MY_PN}-${MY_P}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+suid"
src_compile() {
emake CC="$(tc-getCC)" CFLAGS="$CFLAGS"
}
src_install() {
into /
dobin inject contain pseudo
dodoc README TIPS
use suid && fperms u+s /bin/contain /bin/pseudo
}