summaryrefslogtreecommitdiff
path: root/games-action/minecraft-launcher/minecraft-launcher-1.6.93.ebuild
blob: 5a590a02ca454d0e6f10a5f3479968adc851845b (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
# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

inherit desktop java-pkg-2 xdg

DESCRIPTION="An open-world game whose gameplay revolves around breaking and placing blocks"
HOMEPAGE="https://www.minecraft.net/"
SRC_URI="https://launcher.mojang.com/v1/objects/eabbff5ff8e21250e33670924a0c5e38f47c840b/launcher.jar -> ${P}.jar
	https://launcher.mojang.com/download/minecraft-launcher.svg"

KEYWORDS="~amd64"
LICENSE="Mojang"
SLOT="legacy"

RESTRICT="bindist mirror"

RDEPEND="virtual/jre:1.8"

S="${WORKDIR}"

src_unpack() {
	# do not unpack jar file
	true
}

src_install() {
	java-pkg_newjar "${DISTDIR}/${P}.jar" ${PN}-legacy.jar
	java-pkg_dolauncher ${PN}-legacy --jar ${PN}-legacy.jar --java_args "\${JAVA_OPTS}"

	newicon -s scalable "${DISTDIR}/${PN}.svg" "${PN}-legacy.svg"
	make_desktop_entry ${PN}-legacy "Minecraft (legacy)" ${PN}-legacy Game
}