You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
581 B
25 lines
581 B
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
inherit vcs-snapshot
|
|
|
|
DESCRIPTION="The main game for the Minetest game engine"
|
|
HOMEPAGE="https://github.com/minetest/minetest_game"
|
|
SRC_URI="https://github.com/minetest/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2 CC-BY-SA-3.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=games-action/minetest-${PV}"
|
|
|
|
src_install() {
|
|
insinto /usr/share/minetest/games/${PN}
|
|
doins -r mods menu
|
|
doins game.conf minetest.conf
|
|
|
|
dodoc README.txt game_api.txt
|
|
}
|