Added vegan-desert-island-9999

This commit is contained in:
tastytea 2018-06-20 10:12:40 +02:00
parent 768ac939cc
commit 1bd39a3750
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
1 changed files with 33 additions and 0 deletions

View File

@ -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
}