summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
author Robby Workman2021-04-22 04:47:56 +0200
committer Robby Workman2021-04-22 04:47:56 +0200
commit2909f5f2769fae1dcb182a10e2a41e72a62920a1 (patch)
treea7a4b7605cdeec45e59f46e6dc5d78bb948efd22 /games
parent80fe193c3a181ec9b69337ac02955fb414ec313a (diff)
downloadslackbuilds-2909f5f2769fae1dcb182a10e2a41e72a62920a1.tar.gz
games/bsnes-mercury: Removed (no maintainer)
Diffstat (limited to 'games')
-rw-r--r--games/bsnes-mercury/README38
-rw-r--r--games/bsnes-mercury/bsnes-mercury.SlackBuild91
-rw-r--r--games/bsnes-mercury/bsnes-mercury.info10
-rw-r--r--games/bsnes-mercury/slack-desc19
4 files changed, 0 insertions, 158 deletions
diff --git a/games/bsnes-mercury/README b/games/bsnes-mercury/README
deleted file mode 100644
index 9ed36c43b3..0000000000
--- a/games/bsnes-mercury/README
+++ /dev/null
@@ -1,38 +0,0 @@
-bsnes-mercury is a Super Nintendo video game system emulator that can
-be used as a libretro core.
-
-bsnes-mercury is a fork of higan, aiming to restore some useful
-features that have been removed, as well as improving performance a
-bit. Maximum accuracy is still uncompromisable; anything that affects
-accuracy is optional and off by default.
-
-bsnes-mercury optionally supports using the following BIOS image file
-for operation:
-
-* dsp1.data.rom (DSP1 DATA)
-* dsp1.program.rom (DSP1 PROGRAM)
-* dsp1b.data.rom (DSP1B DATA)
-* dsp1b.program.rom (DSP1B PROGRAM))
-* dsp2.data.rom (DSP2 DATA)
-* dsp2.program.rom (DSP2 PROGRAM)
-* dsp3.data.rom (DSP3 DATA)
-* dsp3.program.rom (DSP3 PROGRAM)
-* dsp4.data.rom (DSP4 DATA)
-* dsp4.program.rom (DSP4 PROGRAM)
-* cx4.data.rom (Cx4 DATA)
-* st010.data.rom (ST-0010 DATA)
-* st010.program.rom (ST-0010 PROGRAM)
-* st011.data.rom (ST-0011 DATA)
-* st011.program.rom (ST-0011 PROGRAM)
-* st018.data.rom (ST-0018 DATA)
-* st018.program.rom (ST-0018 PROGRAM)
-
-By default, this SlackBuild will build the bsnes accuracy core.
-To build the balanced or performance cores, choose any desired cores:
- CORE="accuracy balanced performance" ./bsnes-mercury.SlackBuild
-
-Or to build all three cores, "all" can be used:
- CORE="all" ./bsnes-mercury.SlackBuild
-
-To build the debugging symbols use:
- DEBUG=1 ./bsnes-mercury.SlackBuild
diff --git a/games/bsnes-mercury/bsnes-mercury.SlackBuild b/games/bsnes-mercury/bsnes-mercury.SlackBuild
deleted file mode 100644
index 88a963f8ca..0000000000
--- a/games/bsnes-mercury/bsnes-mercury.SlackBuild
+++ /dev/null
@@ -1,91 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for bsnes-mercury
-
-# Copyright 2016-2018 Hunter Sezen
-# 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.
-
-PRGNAM=bsnes-mercury
-LIBNAM=$(echo $PRGNAM | tr - _)
-VERSION=${VERSION:-2018.08.03_4e221df}
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-if [ -z "$ARCH" ]; then
- case "$( uname -m )" in
- i?86) ARCH=i586 ;;
- arm*) ARCH=arm ;;
- *) ARCH=$( uname -m ) ;;
- esac
-fi
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-LIBDIRSUFFIX=
-[ "$ARCH" = x86_64 ] && LIBDIRSUFFIX=64
-
-set -eu
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar xvf $CWD/$PRGNAM-$VERSION.tar.xz
-cd $PRGNAM-$VERSION
-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 {} \;
-
-[ "${DEBUG:=0}" != 0 ] && DEBUG=1
-
-case "$ARCH" in
- arm) CORE="${CORE:-performance}" ;;
- *) CORE="${CORE:-accuracy}" ;;
-esac
-
-[ "$CORE" = all ] && CORE='accuracy balanced performance'
-
-for PROFILE in $CORE; do
- CORENAM="${LIBNAM}_${PROFILE}_libretro"
- make profile="$PROFILE" DEBUG=$DEBUG GIT_VERSION="${VERSION#*_}"
- install -Dm0644 out/$CORENAM.so $PKG/usr/lib${LIBDIRSUFFIX}/libretro/$CORENAM.so
- install -Dm0644 $CORENAM.info $PKG/usr/lib${LIBDIRSUFFIX}/libretro/info/$CORENAM.info
-done
-
-if [ $DEBUG = 0 ]; then
- find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
- | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
-fi
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a LICENSE README.md $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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/games/bsnes-mercury/bsnes-mercury.info b/games/bsnes-mercury/bsnes-mercury.info
deleted file mode 100644
index 031bd14a84..0000000000
--- a/games/bsnes-mercury/bsnes-mercury.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="bsnes-mercury"
-VERSION="2018.08.03_4e221df"
-HOMEPAGE="https://www.libretro.com/"
-DOWNLOAD="http://slackless.raccoons.tech/src/libretro/bsnes-mercury-2018.08.03_4e221df.tar.xz"
-MD5SUM="f7779264f2a7808f623cf3219a7006de"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="RetroArch"
-MAINTAINER="orphaned - no maintainer"
-EMAIL="nobody@nowhere.com"
diff --git a/games/bsnes-mercury/slack-desc b/games/bsnes-mercury/slack-desc
deleted file mode 100644
index aa4ea09286..0000000000
--- a/games/bsnes-mercury/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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------------------------------------------------------|
-bsnes-mercury: bsnes-mercury (Fork of bsnes with performance improvements)
-bsnes-mercury:
-bsnes-mercury: bsnes-mercury is a fork of higan, aiming to restore some useful
-bsnes-mercury: features that have been removed, as well as improving performance
-bsnes-mercury: a bit.
-bsnes-mercury:
-bsnes-mercury: Homepage: https://www.libretro.com/
-bsnes-mercury:
-bsnes-mercury:
-bsnes-mercury:
-bsnes-mercury: