forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hyperd-0.7.0-r1.ebuild
51 lines (41 loc) · 1.09 KB
/
hyperd-0.7.0-r1.ebuild
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
EGO_PN="github.com/hyperhq/hyperd"
inherit autotools systemd golang-vcs-snapshot
DESCRIPTION="Hypervisor-based Runtime for OCI"
HOMEPAGE="https://github.com/hyperhq/hyperd"
SRC_URI="https://github.com/hyperhq/hyperd/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
IUSE="libvirt xen"
RDEPEND="libvirt? ( >=app-emulation/libvirt-1.2.2 )
xen? ( app-emulation/xen )"
DEPEND="${RDEPEND}
sys-fs/lvm2"
src_prepare() {
pushd src/${EGO_PN} || die
default
eautoreconf
popd
}
src_configure() {
local myeconfargs=( $(use_with libvirt)
$(use_with xen) )
pushd src/${EGO_PN} || die
econf "${myeconfargs[@]}"
popd
}
src_compile() {
GOPATH="${S}:$(get_golibdir_gopath)" emake -C src/${EGO_PN}
}
src_install() {
dodoc src/${EGO_PN}/README.md
dobin src/${EGO_PN}/hyperd
dobin src/${EGO_PN}/hyperctl
insinto /etc/hyper/
doins src/${EGO_PN}/package/dist/etc/hyper/config
systemd_dounit src/${EGO_PN}/package/dist/lib/systemd/system/hyperd.service
}