From 1bd39a3750e17183c72a58fffc694e09bad2d6c2 Mon Sep 17 00:00:00 2001 From: tastytea Date: Wed, 20 Jun 2018 10:12:40 +0200 Subject: [PATCH] Added vegan-desert-island-9999 --- .../vegan-desert-island-9999.ebuild | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 games-misc/vegan-desert-island/vegan-desert-island-9999.ebuild diff --git a/games-misc/vegan-desert-island/vegan-desert-island-9999.ebuild b/games-misc/vegan-desert-island/vegan-desert-island-9999.ebuild new file mode 100644 index 000000000..3fcc49a49 --- /dev/null +++ b/games-misc/vegan-desert-island/vegan-desert-island-9999.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit git-r3 + +DESCRIPTION="2D adventure game about being a vegan on a desert island." +HOMEPAGE="https://gitlab.com/vegan-desert-island/vegan-desert-island" +EGIT_REPO_URI="https://gitlab.com/vegan-desert-island/vegan-desert-island.git" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="" +IUSE="" + +RDEPEND=">=games-engines/solarus-1.5.3-r2" +DEPEND="${RDEPEND}" + +src_unpack() { + git-r3_src_unpack +} + +src_compile() { + echo -e "#\!/bin/sh\n\nsolarus-run /usr/share/${PN}" > ${PN} +} + +src_install() { + dobin ${PN} + insinto /usr/share/${PN} + doins -r data + dodoc README.md attributions.txt +}