summaryrefslogtreecommitdiff
blob: d7993fc843dc8ea341cb2417497c6acae1f59745 (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
35
36
37
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8
inherit go-module linux-info

DESCRIPTION="System container image builder for LXC and LXD"
HOMEPAGE="https://linuxcontainers.org/distrobuilder/introduction/"

SRC_URI="https://github.com/lxc/distrobuilder/archive/${P}.tar.gz"
SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~ppc64"

RDEPEND="
	dev-util/debootstrap
	app-crypt/gnupg
	sys-fs/squashfs-tools
	dev-vcs/git
	net-misc/rsync
	"

CONFIG_CHECK="~OVERLAY_FS"
RESTRICT=" test"

S="${WORKDIR}/${PN}-${P}"

src_compile() {
	GOBIN="${S}/bin" ego install ./...
}

src_install() {
	dobin bin/*
	dodoc -r doc/*
}