45 lines
986 B
Bash
45 lines
986 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit desktop wrapper xdg
|
|
|
|
DESCRIPTION="A top-down shooter with a touch of RPG"
|
|
HOMEPAGE="https://crimsonland.com/"
|
|
SRC_URI="Crimsonland-Linux-x86-${PV}.tar"
|
|
# https://dev.gentoo.org/~chewi/distfiles/${PN}.png"
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="all-rights-reserved"
|
|
SLOT="0"
|
|
KEYWORDS="-* ~amd64 ~x86"
|
|
RESTRICT="bindist fetch splitdebug"
|
|
|
|
RDEPEND="
|
|
media-libs/libsdl2[abi_x86_32,opengl,video]
|
|
media-libs/openal[abi_x86_32]
|
|
"
|
|
|
|
DIR="/opt/${PN}"
|
|
QA_PREBUILT="${DIR#/}/*"
|
|
|
|
pkg_nofetch() {
|
|
einfo "Please buy and download ${SRC_URI} from:"
|
|
einfo " https://www.humblebundle.com/store/${PN}"
|
|
einfo "and move it to your distfiles directory."
|
|
}
|
|
|
|
src_install() {
|
|
exeinto "${DIR}"
|
|
doexe ${PN}
|
|
make_wrapper ${PN} ./${PN} "${DIR}"
|
|
|
|
insinto "${DIR}"
|
|
doins *.pak *.xml
|
|
|
|
dodoc README.txt
|
|
|
|
#doicon -s 64 "${DISTDIR}"/${PN}.png
|
|
make_desktop_entry ${PN} Crimsonland applications-games
|
|
}
|