diff options
author | Steven Voges <svoges.sbo@gmail.com> | 2023-09-02 09:47:46 +0900 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2023-09-02 18:02:27 +0700 |
commit | cadf181e59de77fdf879406fc4fcc98f7f240806 (patch) | |
tree | 9110b5de3fb06b1ac9724e5f6c8cf04fd4d98317 /games | |
parent | 1fc643a8d1dc24c7976e1f41fac78dfe298468ab (diff) |
games/sameboy: Added (emulator).
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r-- | games/sameboy/README | 39 | ||||
-rw-r--r-- | games/sameboy/doinst.sh | 9 | ||||
-rw-r--r-- | games/sameboy/sameboy.SlackBuild | 118 | ||||
-rw-r--r-- | games/sameboy/sameboy.info | 10 | ||||
-rw-r--r-- | games/sameboy/slack-desc | 19 |
5 files changed, 195 insertions, 0 deletions
diff --git a/games/sameboy/README b/games/sameboy/README new file mode 100644 index 0000000000000..51a51988ca005 --- /dev/null +++ b/games/sameboy/README @@ -0,0 +1,39 @@ +SameBoy is an open source Game Boy (DMG) and Game Boy Color (CGB) +emulator, written in portable C. It has a native Cocoa frontend for +macOS, an SDL frontend for other operating systems, and a libretro +core. It also includes a text-based debugger with an expression +evaluator. + +Features + +Features common to both Cocoa and SDL versions: + * Supports Game Boy (DMG) and Game Boy Color (CGB) emulation + * Lets you choose the model you want to emulate regardless of ROM + * High quality 96KHz audio + * Battery save support + * Save states + * Includes open source DMG and CGB boot ROMs: + * Complete support for (and documentation of) all game-specific + palettes in the CGB boot ROM, for accurate emulation of Game + Boy games on a Game Boy Color + * Supports manual palette selection with key combinations, with + 4 additional new palettes (A + B + direction) + * Supports palette selection in a CGB game, forcing it to run in + 'paletted' DMG mode, if ROM allows doing so. + * Support for games with a non-Nintendo logo in the header + * No long animation in the DMG boot + * Advanced text-based debugger with an expression evaluator, + disassembler, conditional breakpoints, conditional watchpoints, + backtracing and other features + * Extremely high accuracy + * Emulates PCM_12 and PCM_34 registers + * T-cycle accurate emulation of LCD timing effects, supporting the + Demotronic trick, Prehistorik Man, GBVideoPlayer and other tech + demos + * Real time clock emulation + * Retina/High DPI display support, allowing a wider range of scaling + factors without artifacts + * Optional frame blending (Requires OpenGL 3.2 or later) + * Several scaling algorithms (Including exclusive algorithms like + OmniScale and Anti-aliased Scale2x; Requires OpenGL 3.2 or later + or Metal) diff --git a/games/sameboy/doinst.sh b/games/sameboy/doinst.sh new file mode 100644 index 0000000000000..65c7e2eeb9aa5 --- /dev/null +++ b/games/sameboy/doinst.sh @@ -0,0 +1,9 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi diff --git a/games/sameboy/sameboy.SlackBuild b/games/sameboy/sameboy.SlackBuild new file mode 100644 index 0000000000000..cf62efb6061e9 --- /dev/null +++ b/games/sameboy/sameboy.SlackBuild @@ -0,0 +1,118 @@ +#!/bin/bash + +# Slackware build script for sameboy + +# Copyright 2023 Steven Voges <Oregon, 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=sameboy +SRCNAM=SameBoy +VERSION=${VERSION:-0.15.8} +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" +elif [ "$ARCH" = "aarch64" ]; 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 $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 {} \; + +sed -i "s/Icon=sameboy/Icon=sameboy-AppIcon/g" FreeDesktop/sameboy.desktop + +mkdir -p build +cd build +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +make -C .. sdl CONF=release +install -vDm0755 bin/SDL/$PRGNAM $PKG/usr/bin/$PRGNAM +install -vDm0644 bin/SDL/background.bmp $PKG/usr/share/$PRGNAM/background.bmp +install -vDm0644 bin/SDL/registers.sym $PKG/usr/share/$PRGNAM/registers.sym +install -vDm0644 bin/SDL/*.bin $PKG/usr/share/$PRGNAM/ +mkdir -p $PKG/usr/share/$PRGNAM/Palettes +install -vDm0644 bin/SDL/Palettes/*.sbp $PKG/usr/share/$PRGNAM/Palettes/ +mkdir -p $PKG/usr/share/$PRGNAM/Shaders +install -vDm0644 bin/SDL/Shaders/*.fsh $PKG/usr/share/$PRGNAM/Shaders/ +cd .. +for NAME in AppIcon Cartridge ColorCartridge ; do + for SIZE in 16 32 64 128 256 512 ; do + install -vDm0644 FreeDesktop/$NAME/${SIZE}x$SIZE.png \ + $PKG/usr/share/icons/hicolor/${SIZE}x$SIZE/apps/${PRGNAM}-$NAME.png + done +done +install -vDm0644 FreeDesktop/$PRGNAM.desktop $PKG/usr/share/applications/$PRGNAM.desktop + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + BESS.md CHANGES.md CONTRIBUTING.md 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 +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/sameboy/sameboy.info b/games/sameboy/sameboy.info new file mode 100644 index 0000000000000..d5a45df11cd39 --- /dev/null +++ b/games/sameboy/sameboy.info @@ -0,0 +1,10 @@ +PRGNAM="sameboy" +VERSION="0.15.8" +HOMEPAGE="https://sameboy.github.io" +DOWNLOAD="https://github.com/LIJI32/SameBoy/archive/v0.15.8/SameBoy-0.15.8.tar.gz" +MD5SUM="d5bf07419f3ee05679672f7728f467e3" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="rgbds" +MAINTAINER="Steven Voges" +EMAIL="svoges.sbo@gmail.com" diff --git a/games/sameboy/slack-desc b/games/sameboy/slack-desc new file mode 100644 index 0000000000000..ccd1f80a4f1d9 --- /dev/null +++ b/games/sameboy/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------------------------------------------------------| +sameboy: sameboy (GB/GBC Emulator) +sameboy: +sameboy: Game Boy and Game Boy Color emulator written in C +sameboy: +sameboy: Homepage: https://sameboy.github.io +sameboy: +sameboy: +sameboy: +sameboy: +sameboy: +sameboy: |