OI/games-action/minecraft-launcher/minecraft-launcher-9999.ebuild

30 lines
679 B
Bash
Raw Permalink Normal View History

# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
2019-05-05 00:18:02 +02:00
inherit desktop
DESCRIPTION="The official Minecraft launcher"
HOMEPAGE="https://www.minecraft.net/fr-fr/download/alternative/"
SRC_URI="https://launcher.mojang.com/download/Minecraft.tar.gz"
LICENSE=""
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
2019-05-04 21:51:27 +02:00
DEPEND="~virtual/jre-1.8.0"
RDEPEND="${DEPEND}"
BDEPEND=""
S="${WORKDIR}/minecraft-launcher"
2019-05-04 21:53:39 +02:00
src_install() {
dodir /opt/${PN}
insinto /opt/${PN}
doins -r *
fperms +x /opt/${PN}/minecraft-launcher
dosym /opt/${PN}/minecraft-launcher /usr/bin/${PN}
2019-05-05 00:18:02 +02:00
make_desktop_entry "/usr/bin/minecraft-launcher" "Minecraft Launcher"
}