diff options
author | David Ferrone <zapwai@gmail.com> | 2022-09-25 12:30:55 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-09-25 12:30:55 +0700 |
commit | 00258bf59710ac696df4c9b50aa6ccf624a2043b (patch) | |
tree | cfa7e1fc39ee7f53167550d7659f5235c490a202 /games/minecraft | |
parent | a243f9172b03af4d9874d9d93952c68464f37cfc (diff) | |
download | slackbuilds-00258bf59710ac696df4c9b50aa6ccf624a2043b.tar.gz |
games/minecraft: Added (The 3D Sandbox Crafting Game).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/minecraft')
-rw-r--r-- | games/minecraft/README | 2 | ||||
-rw-r--r-- | games/minecraft/doinst.sh | 3 | ||||
-rw-r--r-- | games/minecraft/minecraft | 2 | ||||
-rw-r--r-- | games/minecraft/minecraft.SlackBuild | 101 | ||||
-rw-r--r-- | games/minecraft/minecraft.desktop | 6 | ||||
-rw-r--r-- | games/minecraft/minecraft.info | 10 | ||||
-rw-r--r-- | games/minecraft/minecraft.png | bin | 0 -> 49830 bytes | |||
-rw-r--r-- | games/minecraft/slack-desc | 19 |
8 files changed, 143 insertions, 0 deletions
diff --git a/games/minecraft/README b/games/minecraft/README new file mode 100644 index 0000000000..81e7376fb4 --- /dev/null +++ b/games/minecraft/README @@ -0,0 +1,2 @@ +The game of Minecraft is sold for $29.99, +although there is a free 90 minute single-player trial. diff --git a/games/minecraft/doinst.sh b/games/minecraft/doinst.sh new file mode 100644 index 0000000000..5fb28930db --- /dev/null +++ b/games/minecraft/doinst.sh @@ -0,0 +1,3 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi diff --git a/games/minecraft/minecraft b/games/minecraft/minecraft new file mode 100644 index 0000000000..a56a767b30 --- /dev/null +++ b/games/minecraft/minecraft @@ -0,0 +1,2 @@ +#!/usr/bin/bash +/opt/minecraft-launcher/minecraft-launcher diff --git a/games/minecraft/minecraft.SlackBuild b/games/minecraft/minecraft.SlackBuild new file mode 100644 index 0000000000..5ad04a2cbf --- /dev/null +++ b/games/minecraft/minecraft.SlackBuild @@ -0,0 +1,101 @@ +#!/bin/bash + +# Slackware build script for minecraft + +# Copyright 2022, David Ferrone, RI USA +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=minecraft +SRCNAM=Minecraft +DIRNAM=minecraft-launcher + +VERSION=${VERSION:-1.19.2} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-tgz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION + +tar xvf $CWD/$SRCNAM.tar.gz +cd $DIRNAM + +mkdir $PKG/opt +cd .. +mv $DIRNAM $PKG/opt/$DIRNAM + +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +install -D -m 0755 $CWD/$PRGNAM -t $PKG/usr/bin/ +install -D -m 0644 $CWD/$PRGNAM.desktop -t $PKG/usr/share/applications/ +install -D -m 0644 $CWD/$PRGNAM.png -t $PKG/usr/share/pixmaps/ + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/games/minecraft/minecraft.desktop b/games/minecraft/minecraft.desktop new file mode 100644 index 0000000000..4c482a0183 --- /dev/null +++ b/games/minecraft/minecraft.desktop @@ -0,0 +1,6 @@ +[Desktop Entry] +Type=Application +Terminal=false +Exec=/usr/bin/minecraft +Name=Minecraft +Icon=minecraft diff --git a/games/minecraft/minecraft.info b/games/minecraft/minecraft.info new file mode 100644 index 0000000000..bc3e5926f9 --- /dev/null +++ b/games/minecraft/minecraft.info @@ -0,0 +1,10 @@ +PRGNAM="minecraft" +VERSION="1.19.2" +HOMEPAGE="https://mojang.com" +DOWNLOAD="https://launcher.mojang.com/download/Minecraft.tar.gz" +MD5SUM="34e8711c41817ed3361338f3fe81e6af" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="" +MAINTAINER="David Ferrone" +EMAIL="zapwai@gmail.com" diff --git a/games/minecraft/minecraft.png b/games/minecraft/minecraft.png Binary files differnew file mode 100644 index 0000000000..3db59b74b6 --- /dev/null +++ b/games/minecraft/minecraft.png diff --git a/games/minecraft/slack-desc b/games/minecraft/slack-desc new file mode 100644 index 0000000000..ee518b9b2e --- /dev/null +++ b/games/minecraft/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +minecraft: minecraft (The 3D Sandbox Crafting Game) +minecraft: +minecraft: Mojang's popular survival game. +minecraft: https://www.minecraft.net +minecraft: +minecraft: +minecraft: +minecraft: +minecraft: +minecraft: +minecraft: |