mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
I manually went through some entries for `pkgcheck scan -c VariableOrderCheck`. Misc updates: UnusedEclassesCheck RESTRICT+=" .." -> RESTRICT=".." Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Julien Roy <julien@jroy.ca>
46 lines
1.1 KiB
Bash
46 lines
1.1 KiB
Bash
# Copyright 1999-2024 Gentoo Foundation
|
|
# 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"
|
|
}
|