diff options
author | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2022-08-24 11:53:16 +0200 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2022-08-24 12:01:05 +0200 |
commit | effec0c98b3e1163565ce1112691e366bce013cd (patch) | |
tree | 4f7aabab44a1ec3f2b39219795b29f48e682b96c /games-action/minecraft-launcher/minecraft-launcher-1.0.1221.ebuild | |
parent | dev-util/cdecl: drop 11.14 (diff) | |
download | gentoo-effec0c98b3e1163565ce1112691e366bce013cd.tar.gz gentoo-effec0c98b3e1163565ce1112691e366bce013cd.tar.bz2 gentoo-effec0c98b3e1163565ce1112691e366bce013cd.zip |
games-action/minecraft-launcher: add 1.0.1221
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'games-action/minecraft-launcher/minecraft-launcher-1.0.1221.ebuild')
-rw-r--r-- | games-action/minecraft-launcher/minecraft-launcher-1.0.1221.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/games-action/minecraft-launcher/minecraft-launcher-1.0.1221.ebuild b/games-action/minecraft-launcher/minecraft-launcher-1.0.1221.ebuild new file mode 100644 index 000000000000..c493997b8a47 --- /dev/null +++ b/games-action/minecraft-launcher/minecraft-launcher-1.0.1221.ebuild @@ -0,0 +1,60 @@ +# Copyright 2019-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop xdg + +# We can find which url we need for the latest release here: +# https://launchermeta.mojang.com/v1/products/launcher/6f083b80d5e6fabbc4236f81d0d8f8a350c665a9/linux.json + +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/4392471202bb9dff482db8a5551a7643da955ace/minecraft-launcher -> ${P} + https://launcher.mojang.com/download/minecraft-launcher.svg" +S="${WORKDIR}" + +KEYWORDS="-* ~amd64" +LICENSE="Mojang" +SLOT="0" + +RESTRICT="bindist mirror" + +RDEPEND=" + >=x11-libs/gtk+-2.24.32-r1[X(+)] + app-crypt/libsecret + dev-libs/nss + dev-libs/libbsd + dev-libs/libffi:0/8 + dev-libs/libpcre + media-libs/alsa-lib + media-libs/openal + net-libs/gnutls[idn] + net-misc/curl[adns] + net-print/cups + sys-apps/dbus + virtual/jre:* + virtual/opengl + x11-apps/xrandr + x11-libs/libXScrnSaver + x11-libs/libXcomposite + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXi + x11-libs/libXrender + x11-libs/libXtst + x11-libs/xcb-util +" + +QA_PREBUILT=" + usr/bin/minecraft-launcher +" + +src_install() { + newbin "${DISTDIR}/${P}" ${PN} + + doicon -s scalable "${DISTDIR}/${PN}.svg" + make_desktop_entry ${PN} "Minecraft" ${PN} Game +} |