33 lines
616 B
Bash
33 lines
616 B
Bash
# Copyright 1999-2016 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=6
|
|
|
|
inherit cmake-utils
|
|
|
|
DESCRIPTION="Voxelands fork of Minetest"
|
|
HOMEPAGE=""
|
|
SRC_URI="https://gitlab.com/voxelands/voxelands/repository/archive.tar.gz?ref=v${PVR} -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPLv3"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
|
|
DEPEND=""
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/voxelands-v1608.01-3ac3f431a26858857f6805ad33f5fe8aaa8d0765"
|
|
|
|
src_configure() {
|
|
# cmake -DRUN_IN_PLACE=1 .
|
|
cmake-utils_src_configure
|
|
}
|
|
|
|
src_install() {
|
|
# cmake DESTDIR="${D}" install
|
|
cmake-utils_src_install
|
|
}
|
|
|