summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
author Robby Workman2021-04-22 04:59:31 +0200
committer Robby Workman2021-04-22 04:59:31 +0200
commitff9152416e88655f479c64393afd22f9f27226e7 (patch)
treea6582e00be012ca1807ca24dab1bda2c3006d5e4 /games
parentf3b9916917a00a9703611e7575246b1372eb9d9f (diff)
downloadslackbuilds-ff9152416e88655f479c64393afd22f9f27226e7.tar.gz
games/picodrive: Removed (no maintainer)
Diffstat (limited to 'games')
-rw-r--r--games/picodrive/README22
-rw-r--r--games/picodrive/picodrive.SlackBuild95
-rw-r--r--games/picodrive/picodrive.info10
-rw-r--r--games/picodrive/picodrive_libretro-info24
-rw-r--r--games/picodrive/slack-desc19
5 files changed, 0 insertions, 170 deletions
diff --git a/games/picodrive/README b/games/picodrive/README
deleted file mode 100644
index 14c1724151..0000000000
--- a/games/picodrive/README
+++ /dev/null
@@ -1,22 +0,0 @@
-PicoDrive is a Sega 8/16 bit video game system emulator that can be
-used as a libretro core or with the standalone sdl frontend.
-
-This is yet another Megadrive / Genesis / Sega CD / Mega CD / 32X / SMS
-emulator, which was written having ARM-based handheld devices in mind
-(such as smartphones and handheld consoles like GP2X and Pandora),
-but also runs on non-ARM little-endian hardware too.
-
-RetroArch is an optional dependency to run the libretro core.
-
-PicoDrive requires a real BIOS for Sega CD/Mega CD emulation to work.
-
-* bios_CD_E.bin (MegaCD EU BIOS)
-* bios_CD_U.bin (SegaCD US BIOS)
-* bios_CD_J.bin (MegaCD JP BIOS)
-
-For the standalone emulator they can be placed in ~/.picodrive/ or for
-the libretro core they should be placed in RetroArch's system/bios
-directory.
-
-To build the debugging symbols use:
- DEBUG=1 ./picodrive.SlackBuild
diff --git a/games/picodrive/picodrive.SlackBuild b/games/picodrive/picodrive.SlackBuild
deleted file mode 100644
index f695da7c02..0000000000
--- a/games/picodrive/picodrive.SlackBuild
+++ /dev/null
@@ -1,95 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for picodrive
-
-# Copyright 2016-2019 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=picodrive
-SRCNAM=PicoDrive
-LIBNAM=${PRGNAM}_libretro
-VERSION=${VERSION:-1.93}
-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 $SRCNAM-$VERSION
-tar xvf $CWD/${SRCNAM}_$VERSION.tar.gz
-cd $SRCNAM-$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
-
-./configure
-make DEBUG=$DEBUG
-
-install -Dm0755 PicoDrive $PKG/usr/games/PicoDrive
-
-make clean
-make -f Makefile.libretro \
- DEBUG=$DEBUG \
- GIT_VERSION="${VERSION#*_}"
-
-install -Dm0644 $LIBNAM.so \
- $PKG/usr/lib${LIBDIRSUFFIX}/libretro/$LIBNAM.so
-
-# https://raw.githubusercontent.com/libretro/libretro-super/92a64459d6e63eed7d79775f65242c5d47807e44/dist/info/picodrive_libretro.info
-install -Dm0644 $CWD/$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 AUTHORS COPYING ChangeLog README $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/picodrive/picodrive.info b/games/picodrive/picodrive.info
deleted file mode 100644
index ef9a0a5613..0000000000
--- a/games/picodrive/picodrive.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="picodrive"
-VERSION="1.93"
-HOMEPAGE="https://github.com/notaz/picodrive"
-DOWNLOAD="https://github.com/notaz/picodrive/releases/download/v1.93/PicoDrive_1.93.tar.gz"
-MD5SUM="c867f2003e3d4a580d5b0e0fe86d0b7a"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="orphaned - no maintainer"
-EMAIL="nobody@nowhere.com"
diff --git a/games/picodrive/picodrive_libretro-info b/games/picodrive/picodrive_libretro-info
deleted file mode 100644
index 507e6a3205..0000000000
--- a/games/picodrive/picodrive_libretro-info
+++ /dev/null
@@ -1,24 +0,0 @@
-display_name = "Sega - MS/MD/CD/32X (PicoDrive)"
-authors = "notaz|fdave"
-supported_extensions = "bin|gen|smd|md|32x|cue|iso|sms|68k"
-corename = "PicoDrive"
-manufacturer = "Sega"
-categories = "Emulator"
-systemname = "Sega 8/16-bit + 32X (Various)"
-systemid = "mega_drive"
-database = "Sega - Master System - Mark III|Sega - Mega-CD - Sega CD|Sega - Mega Drive - Genesis|Sega - PICO|Sega - 32X"
-license = "MAME"
-permissions = "dynarec_optional"
-display_version = "1.91"
-supports_no_game = "false"
-firmware_count = 3
-firmware0_desc = "bios_CD_E.bin (MegaCD EU BIOS)"
-firmware0_path = "bios_CD_E.bin"
-firmware0_opt = "false"
-firmware1_desc = "bios_CD_U.bin (SegaCD US BIOS)"
-firmware1_path = "bios_CD_U.bin"
-firmware1_opt = "false"
-firmware2_desc = "bios_CD_J.bin (MegaCD JP BIOS)"
-firmware2_path = "bios_CD_J.bin"
-firmware2_opt = "false"
-notes = "(!) bios_CD_U.bin (md5): 2efd74e3232ff260e371b99f84024f7f|(!) bios_CD_E.bin (md5): e66fa1dc5820d254611fdcdba0662372|(!) bios_CD_J.bin (md5): 278a9397d192149e84e820ac621a8edd"
diff --git a/games/picodrive/slack-desc b/games/picodrive/slack-desc
deleted file mode 100644
index 8fab0e1e03..0000000000
--- a/games/picodrive/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------------------------------------------------------|
-picodrive: picodrive (Fast MegaDrive/MegaCD/32X emulator)
-picodrive:
-picodrive: This is yet another Megadrive / Genesis / Sega CD / Mega CD / 32X /
-picodrive: SMS emulator, which was written having ARM-based handheld devices in
-picodrive: mind emulator, but also runs on non-ARM little-endian hardware too.
-picodrive:
-picodrive: Homepage: https://github.com/notaz/picodrive
-picodrive:
-picodrive:
-picodrive:
-picodrive: