blob: fd338e4f1e5682928ff11c02100c0369408982d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit wrapper
DESCRIPTION="RTS from 2000 by Massive Entertainment, without resources and buildings"
HOMEPAGE="https://en.wikipedia.org/wiki/Ground_Control_(video_game)"
SRC_URI="https://archive.org/download/$PN.tar.xz/$PN.tar.xz"
S="${WORKDIR}"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="~amd64"
RESTRICT="strip"
RDEPEND="
virtual/wine
app-emulation/dxvk
"
QA_PREBUILT="*"
src_install() {
mkdir -p "$ED$/opt"
mkdir "$ED/opt" || die
mkdir -p "$ED/usr/bin/" || die
cp -r "$PN" "$ED/opt/$PN" || die
make_wrapper "$PN" "env WINEPREFIX=/home/\$USER/.wine-ground-control wine /opt/$PN/gc.exe"
}
pkg_postinst() {
einfo "Downloaded from https://www.moddb.com/games/ground-control/downloads/ground-control-install"
einfo "More about the game:"
einfo "https://www.wikidata.org/wiki/Q1547686"
einfo "https://www.metacritic.com/game/1300002617/"
einfo "The game is installed to /opt/$PN - if you want to run it by another Wine or operating system"
}
|