mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
29 lines
649 B
Bash
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
|
|
}
|