25 lines
530 B
Bash
25 lines
530 B
Bash
# Copyright 2004-2015 Sabayon
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=5
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="Sabayon live image scripts and tools"
|
|
HOMEPAGE="http://www.sabayon.org"
|
|
SRC_URI="https://github.com/Sabayon/sabayon-dockerscripts/archive/v${PVR}.tar.gz -> ${PVR}.tar.gz"
|
|
RESTRICT="mirror"
|
|
SLOT="0"
|
|
LICENSE="GPL-2"
|
|
KEYWORDS="amd64 arm x86"
|
|
IUSE=""
|
|
S="${WORKDIR}/${PN}-${PVR}"
|
|
DEPEND=""
|
|
RDEPEND="app-emulation/docker
|
|
games-misc/cowsay"
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" \
|
|
install || die
|
|
}
|