mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
system/sdltrs: Added to 13.0 repository
This commit is contained in:
parent
e61301bbbd
commit
235490c1d8
7 changed files with 122 additions and 0 deletions
10
system/sdltrs/README
Normal file
10
system/sdltrs/README
Normal file
|
@ -0,0 +1,10 @@
|
|||
sdltrs: Radio Shack TRS-80 Model I/III/4/4P Emulator
|
||||
|
||||
sdltrs is a Radio Shack TRS-80 Model I/III/4/4P emulator for Macintosh OSX,
|
||||
Windows and Linux. It has been ported from the excellent X Window Unix
|
||||
emulator xtrs. Instead of using the X-Window system for graphics, it uses
|
||||
the portable SDL library.
|
||||
|
||||
A simple sdltrs.desktop file is included that will start sdltrs with the
|
||||
default options. Read the included documentation after installation for
|
||||
more information.
|
4
system/sdltrs/doinst.sh
Normal file
4
system/sdltrs/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 >/dev/null 2>&1
|
||||
fi
|
||||
|
69
system/sdltrs/sdltrs.SlackBuild
Normal file
69
system/sdltrs/sdltrs.SlackBuild
Normal file
|
@ -0,0 +1,69 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for sdltrs:
|
||||
# the Radio Shack TRS-80 Model I/III/4/4p emulator
|
||||
|
||||
# Written by Niels Horn - niels.horn@gmail.com
|
||||
# revision date 2009/09/26
|
||||
|
||||
PRGNAM=sdltrs
|
||||
VERSION=1_0_0
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
CWD=$(pwd)
|
||||
TMP=${TMP:-/tmp/SBo}
|
||||
PKG=$TMP/package-$PRGNAM
|
||||
OUTPUT=${OUTPUT:-/tmp}
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $TMP/${PRGNAM}_$VERSION $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
tar xvf $CWD/${PRGNAM}_$VERSION.tar.gz
|
||||
cd ${PRGNAM}_$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
# the Makefile is in the src/linux directory
|
||||
make INCS="$SLKCFLAGS" -C src/linux
|
||||
|
||||
# sdltrs does not have a "make install" option, so we'll do it manually
|
||||
mkdir -p $PKG/usr/bin
|
||||
cp -a src/linux/sdltrs $PKG/usr/bin
|
||||
strip --strip-unneeded $PKG/usr/bin/sdltrs
|
||||
|
||||
# Copy icon & desktop file to package
|
||||
mkdir -p $PKG/usr/share/{applications,pixmaps}
|
||||
cat $CWD/sdltrs.desktop > $PKG/usr/share/applications/sdltrs.desktop
|
||||
cat $CWD/sdltrs.png > $PKG/usr/share/pixmaps/sdltrs.png
|
||||
|
||||
# Make a directory for the ROMs (not included) and copy included images
|
||||
mkdir -p $PKG/usr/share/sdltrs
|
||||
cp -a diskimages/* $PKG/usr/share/sdltrs
|
||||
|
||||
mkdir -p $PKG/usr/doc/${PRGNAM}-$VERSION/html
|
||||
cp -a BUILDING README $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a docs/* $PKG/usr/doc/$PRGNAM-$VERSION/html/
|
||||
find $PKG/usr/doc/$PRGNAM-$VERSION/ -type f -exec chmod 644 {} \;
|
||||
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:-tgz}
|
10
system/sdltrs/sdltrs.desktop
Normal file
10
system/sdltrs/sdltrs.desktop
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=sdltrs
|
||||
Comment=Emulator for TRS-80
|
||||
Categories=System;
|
||||
Exec=sdltrs
|
||||
Icon=sdltrs
|
||||
Terminal=false
|
||||
StartupNotify=false
|
10
system/sdltrs/sdltrs.info
Normal file
10
system/sdltrs/sdltrs.info
Normal file
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="sdltrs"
|
||||
VERSION="1.0.0"
|
||||
HOMEPAGE="http://sdltrs.sourceforge.net"
|
||||
DOWNLOAD="http://sourceforge.net/projects/sdltrs/files/sdltrs_1_0_0.tar.gz/download"
|
||||
MD5SUM="280bfc59f93a7f804288dfbc878e792e"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Niels Horn"
|
||||
EMAIL="niels.horn@gmail.com"
|
||||
APPROVED="rworkman"
|
BIN
system/sdltrs/sdltrs.png
Normal file
BIN
system/sdltrs/sdltrs.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 362 B |
19
system/sdltrs/slack-desc
Normal file
19
system/sdltrs/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------------------------------------------------------|
|
||||
sdltrs: sdltrs: Radio Shack TRS-80 Model I/III/4/4P Emulator.
|
||||
sdltrs:
|
||||
sdltrs: sdltrs is a Radio Shack TRS-80 Model I/III/4/4P emulator for
|
||||
sdltrs: Macintosh OSX, Windows and Linux. It has been ported from the
|
||||
sdltrs: excellent X-Windows Unix emulator xtrs. Instead of using the
|
||||
sdltrs: X-Window system for graphics, it uses the portable SDL library.
|
||||
sdltrs:
|
||||
sdltrs: http://sdltrs.sourceforge.net/
|
||||
sdltrs:
|
||||
sdltrs:
|
||||
sdltrs:
|
Loading…
Reference in a new issue