blob: f5de0d0eedc864ad9075be746bda681e7a14a195 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit unpacker
DESCRIPTION="Quake4 SDK"
HOMEPAGE="https://iddevnet.dhewm3.org/quake4/Quake4SDK.html"
SRC_URI="mirror://idsoftware/quake4/source/linux/quake4-linux-${PV}-sdk.x86.run"
S="${WORKDIR}"
LICENSE="QUAKE4"
SLOT="0"
KEYWORDS="-* amd64 x86"
RESTRICT="bindist mirror strip"
src_unpack() {
unpack_makeself
rm -rf setup.{sh,data} || die
}
src_install() {
insinto /opt/${PN}
doins -r *
}
|