blob: 4b2367c13e4e721caf266be59730d12ef0ea2ec8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
EGO_PN="github.com/genuinetools/img"
inherit golang-vcs-snapshot
DESCRIPTION="Standalone daemon-less unprivileged Dockerfile and OCI container image builder"
HOMEPAGE="https://github.com/genuinetools/img"
SRC_URI="https://github.com/genuinetools/img/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
LICENSE="MIT"
SLOT="0"
IUSE="seccomp"
DEPEND="seccomp? ( sys-libs/libseccomp )"
RDEPEND="${DEPEND}
app-emulation/runc"
src_compile() {
GOPATH="${S}:$(get_golibdir_gopath)" \
GOCACHE="${T}/go-cache" \
IMG_DISABLE_EMBEDDED_RUNC=1 \
go build -v -work -x -tags "noembed $(usev seccomp)" \
-ldflags="-s -w -X ${EGO_PN}/version.VERSION=${PV}" "${EGO_PN}" || die
}
src_install() {
dobin img
dodoc "src/${EGO_PN}"/{README.md,AUTHORS}
}
|