mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
games/generator_cbiere: Added to 12.2 repository
This commit is contained in:
parent
92a8cadb86
commit
1edf0ebea0
7 changed files with 124 additions and 0 deletions
6
games/generator_cbiere/README
Normal file
6
games/generator_cbiere/README
Normal file
|
@ -0,0 +1,6 @@
|
|||
generator_cbiere (Sega Genesis/MegaDrive emulator)
|
||||
|
||||
This is a modified version of Generator, by James Ponder, based on
|
||||
version 0.35.
|
||||
|
||||
Note: press Control-F to get out of fullscreen mode.
|
4
games/generator_cbiere/doinst.sh
Normal file
4
games/generator_cbiere/doinst.sh
Normal file
|
@ -0,0 +1,4 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications
|
||||
fi
|
||||
|
80
games/generator_cbiere/generator_cbiere.SlackBuild
Normal file
80
games/generator_cbiere/generator_cbiere.SlackBuild
Normal file
|
@ -0,0 +1,80 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for generator_cbiere
|
||||
|
||||
# Written by B. Watson (yalhcru@gmail.com)
|
||||
|
||||
PRGNAM=generator_cbiere
|
||||
VERSION=${VERSION:-0.35r3}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
# I am just not going to contort the script to turn the $VERSION
|
||||
# into the source filename. Caveat scriptor...
|
||||
SOURCE=generator-0.35-cbiere-r3
|
||||
|
||||
# The docs say the "raze" Z80 core is faster, but x86-only.
|
||||
# If you really want the "cmz80" core on an x86 box, set
|
||||
# Z80CORE=cmz80 in the environment. Otherwise, this script
|
||||
# will pick the best core based on the ARCH variable.
|
||||
Z80CORE=${Z80CORE:-raze}
|
||||
|
||||
# No LIBDIRSUFFIX needed
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
Z80CORE=cmz80
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $SOURCE
|
||||
tar xvf $CWD/$SOURCE.tar.bz2
|
||||
cd $SOURCE
|
||||
chown -R root:root .
|
||||
chmod -R a-s,u+w,go+r-w .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--with-$Z80CORE \
|
||||
--with-gtk \
|
||||
--bindir=/usr/games \
|
||||
--with-sdl-audio \
|
||||
--build=$ARCH-slackware-linux
|
||||
|
||||
make
|
||||
make install-strip DESTDIR=$PKG
|
||||
|
||||
# Icon by Deleket (Jojo Mendoza), downloaded from:
|
||||
# http://www.iconarchive.com/show/gaming-icons-by-deleket/Sega-Genesis-icon.html
|
||||
mkdir -p $PKG/usr/share/pixmaps
|
||||
cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png
|
||||
|
||||
mkdir -p $PKG/usr/share/applications
|
||||
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp AUTHORS COPYING ChangeLog LICENSE NEWS README TODO docs/* \
|
||||
$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.tgz
|
7
games/generator_cbiere/generator_cbiere.desktop
Normal file
7
games/generator_cbiere/generator_cbiere.desktop
Normal file
|
@ -0,0 +1,7 @@
|
|||
[Desktop Entry]
|
||||
Name=Generator
|
||||
GenericName=Sega Genesis Emulator
|
||||
Exec=generator-gtk
|
||||
Icon=generator_cbiere
|
||||
Type=Application
|
||||
Categories=Game;Emulator;
|
8
games/generator_cbiere/generator_cbiere.info
Normal file
8
games/generator_cbiere/generator_cbiere.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="generator_cbiere"
|
||||
VERSION="0.35r3"
|
||||
HOMEPAGE="http://www.ghostwhitecrab.com/generator/"
|
||||
DOWNLOAD="http://mirrors.kernel.org/gentoo/distfiles/generator-0.35-cbiere-r3.tar.bz2"
|
||||
MD5SUM="5ab81706482d2c2c9932521a25dbae28"
|
||||
MAINTAINER="B. Watson"
|
||||
EMAIL="yalhcru@gmail.com"
|
||||
APPROVED="rworkman"
|
BIN
games/generator_cbiere/generator_cbiere.png
Normal file
BIN
games/generator_cbiere/generator_cbiere.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
19
games/generator_cbiere/slack-desc
Normal file
19
games/generator_cbiere/slack-desc
Normal file
|
@ -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 ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
generator_cbiere: generator_cbiere (Sega Genesis/MegaDrive emulator)
|
||||
generator_cbiere:
|
||||
generator_cbiere: This is a modified version of Generator, by James Ponder, based on
|
||||
generator_cbiere: version 0.35.
|
||||
generator_cbiere:
|
||||
generator_cbiere:
|
||||
generator_cbiere:
|
||||
generator_cbiere:
|
||||
generator_cbiere:
|
||||
generator_cbiere:
|
||||
generator_cbiere:
|
Loading…
Reference in a new issue