forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FTL-gog-1.6.7.18662.ebuild
61 lines (49 loc) · 1.23 KB
/
FTL-gog-1.6.7.18662.ebuild
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit desktop unpacker
DESCRIPTION="Top-down roguelike space ship simulator"
HOMEPAGE="https://www.gog.com/game/faster_than_light"
SRC_URI="ftl_advanced_edition_en_${PV//./_}.sh"
RESTRICT="bindist fetch mirror strip test"
LICENSE="GOG-EULA"
SLOT="0"
KEYWORDS="-* ~amd64 ~x86"
IUSE=""
DEPEND="app-arch/unzip"
RDEPEND="media-libs/freetype
media-libs/libsdl[X,sound,opengl,video]
media-libs/libpng
sys-libs/zlib
virtual/opengl"
S="${WORKDIR}/data/noarch"
pkg_nofetch() {
elog "Please buy and download ${SRC_URI} from"
elog "https://www.gog.com/game/faster_than_light"
}
src_unpack() {
unpack_zip "${DISTDIR}/${A}"
}
src_prepare() {
default
rm -r support/{xdg*,*.{sh,txt}} || die
if ! use x86; then
rm game/data/FTL.x86 || die
fi
if ! use amd64; then
rm game/data/FTL.amd64 || die
fi
}
src_install() {
insinto /opt/gog/FTL
doins -r .
fperms +x /opt/gog/FTL/{start.sh,game/FTL}
if use x86; then
fperms +x /opt/gog/FTL/game/data/FTL.x86
fi
if use amd64; then
fperms +x /opt/gog/FTL/game/data/FTL.amd64
fi
make_desktop_entry "/opt/gog/FTL/start.sh" "FTL: Advanced Edition" FTL
newicon support/icon.png FTL.png
}