summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
author Robby Workman2021-04-22 04:48:52 +0200
committer Robby Workman2021-04-22 04:48:52 +0200
commitd68857fa4621fdb62113ece3c88726f896525ef7 (patch)
tree60fe043209235a52290565aa6b67d7d659c9cc4f /games
parentff3194b2cc770cba9a39e1310fd443e959f811db (diff)
downloadslackbuilds-d68857fa4621fdb62113ece3c88726f896525ef7.tar.gz
games/fbalpha: Removed (no maintainer)
Diffstat (limited to 'games')
-rw-r--r--games/fbalpha/README17
-rw-r--r--games/fbalpha/fbalpha.SlackBuild89
-rw-r--r--games/fbalpha/fbalpha.info10
-rw-r--r--games/fbalpha/slack-desc19
4 files changed, 0 insertions, 135 deletions
diff --git a/games/fbalpha/README b/games/fbalpha/README
deleted file mode 100644
index 29c1ae8fb3..0000000000
--- a/games/fbalpha/README
+++ /dev/null
@@ -1,17 +0,0 @@
-Final Burn Alpha is an arcade system emulator that can be used as a
-libretro core.
-
-This package was previoulsy called libretro-fba.
-
-Final Burn Alpha may require both a parent and child romset to play
-games with, rebuilding romsets so they work properly is not supported
-on GNU/Linux, but the required dat files are included in the src tree.
-
-Romsets built for FB Alpha (0.2.97.38) are recommended for best
-results.
-
-If you are building fbalpha for a Raspberry Pi 2, use:
- RPI2=1 ./fbalpha.SlackBuild
-
-To build the debugging symbols use:
- DEBUG=1 ./fbalpha.SlackBuild
diff --git a/games/fbalpha/fbalpha.SlackBuild b/games/fbalpha/fbalpha.SlackBuild
deleted file mode 100644
index 9262ef393c..0000000000
--- a/games/fbalpha/fbalpha.SlackBuild
+++ /dev/null
@@ -1,89 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for fbalpha
-
-# Copyright 2016-2018 Hunter Sezen California, 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.
-
-PRGNAM=fbalpha
-LIBNAM=${PRGNAM}_libretro
-VERSION=${VERSION:-2018.11.03_a26fdf9}
-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
-
-RPI2=${RPI2:-0}
-
-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 "$RPI2" in
- 1) PLATFORM='platform=rpi2' ;;
- *) PLATFORM= ;;
-esac
-
-make -f makefile.libretro DEBUG=$DEBUG $PLATFORM
-
-install -Dm0644 $LIBNAM.so $PKG/usr/lib${LIBDIRSUFFIX}/libretro/$LIBNAM.so
-install -Dm0644 $LIBNAM.info $PKG/usr/lib${LIBDIRSUFFIX}/libretro/info/$LIBNAM.info
-
-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 README.md gamelist.txt src/license.txt $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/fbalpha/fbalpha.info b/games/fbalpha/fbalpha.info
deleted file mode 100644
index 7ab0a1e104..0000000000
--- a/games/fbalpha/fbalpha.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="fbalpha"
-VERSION="2018.11.03_a26fdf9"
-HOMEPAGE="https://www.libretro.com/"
-DOWNLOAD="http://slackless.raccoons.tech/src/libretro/fbalpha-2018.11.03_a26fdf9.tar.xz"
-MD5SUM="3e2e608993617046e10abf94fff3714c"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES="RetroArch"
-MAINTAINER="orphaned - no maintainer"
-EMAIL="nobody@nowhere.com"
diff --git a/games/fbalpha/slack-desc b/games/fbalpha/slack-desc
deleted file mode 100644
index defdb27b35..0000000000
--- a/games/fbalpha/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------------------------------------------------------|
-fbalpha: fbalpha (libretro port of Final Burn Alpha v0.2.97.38)
-fbalpha:
-fbalpha: Final Burn Alpha is an arcade system emulator that can be used as a
-fbalpha: libretro core.
-fbalpha:
-fbalpha: Homepage: https://www.libretro.com/
-fbalpha:
-fbalpha:
-fbalpha:
-fbalpha:
-fbalpha: