mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-20 19:41:34 +01:00
academic/tuxtype2: Initial import
This commit is contained in:
parent
3676aff5fb
commit
7158e9e75a
6 changed files with 118 additions and 0 deletions
4
academic/tuxtype2/README
Normal file
4
academic/tuxtype2/README
Normal file
|
@ -0,0 +1,4 @@
|
|||
"Tux Typing" is an educational typing tutor for children. It
|
||||
features several different types of gameplay, at a variety of
|
||||
difficulty levels.
|
||||
|
3
academic/tuxtype2/doinst.sh
Normal file
3
academic/tuxtype2/doinst.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
if [ -x usr/bin/update-desktop-database ]; then
|
||||
./usr/bin/update-desktop-database ./usr/share/applications >/dev/null 2>&1
|
||||
fi
|
11
academic/tuxtype2/slack-desc
Normal file
11
academic/tuxtype2/slack-desc
Normal file
|
@ -0,0 +1,11 @@
|
|||
tuxtype2: Tux Typing 2 (Educational Typing Tutor)
|
||||
tuxtype2:
|
||||
tuxtype2: "Tux Typing" is an educational typing tutor for children. It
|
||||
tuxtype2: features several different types of gameplay, at a variety of
|
||||
tuxtype2: difficulty levels.
|
||||
tuxtype2:
|
||||
tuxtype2: Homepage: http://tuxtype.sourceforge.net/
|
||||
tuxtype2:
|
||||
tuxtype2:
|
||||
tuxtype2:
|
||||
tuxtype2:
|
82
academic/tuxtype2/tuxtype2.SlackBuild
Normal file
82
academic/tuxtype2/tuxtype2.SlackBuild
Normal file
|
@ -0,0 +1,82 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for Tux Typing 2
|
||||
|
||||
# Copyright 2007 MagicMan <MagicMan07@bluebottle.com>
|
||||
# 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.
|
||||
|
||||
# Slight modification by the SlackBuild project
|
||||
|
||||
if [ "$(id -u)" != "0" ]; then
|
||||
echo "This script must be run as root!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
PRGNAM=tuxtype2
|
||||
VERSION=1.5.3
|
||||
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"
|
||||
elif [ "$ARCH" = "i686" ]; then
|
||||
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
||||
fi
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP || exit 1
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar -xvf $CWD/$PRGNAM-$VERSION.tar.* || exit 1
|
||||
cd $PRGNAM-$VERSION || exit 1
|
||||
|
||||
chown -R root:root .
|
||||
chmod -R u+w,go+r-w,a-s .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--localstatedir=/var \
|
||||
|| exit 1
|
||||
|
||||
make || exit 1
|
||||
make install-strip DESTDIR=$PKG || exit 1
|
||||
|
||||
mv $PKG/usr/doc/$PRGNAM $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/doinst.sh > $PKG/install/doinst.sh
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
mkdir -p $PKG/usr/share/applications
|
||||
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
|
||||
mkdir -p $PKG/usr/share/pixmaps
|
||||
( cd $PKG/usr/share/pixmaps ; ln -sf ../tuxtype2/data/images/tux0.png tuxtype2.png )
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
10
academic/tuxtype2/tuxtype2.desktop
Normal file
10
academic/tuxtype2/tuxtype2.desktop
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Tux Typing 2
|
||||
GenericName=Educational Typing Tutor
|
||||
Exec=tuxtype2
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Application;Education
|
||||
Icon=/usr/share/pixmaps/tuxtype2.png
|
||||
StartupNotify=false
|
8
academic/tuxtype2/tuxtype2.info
Normal file
8
academic/tuxtype2/tuxtype2.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="tuxtype2"
|
||||
VERSION="1.5.3"
|
||||
HOMEPAGE="http://tuxtype.sourceforge.net/"
|
||||
DOWNLOAD="http://dl.sourceforge.net/tuxtype/tuxtype2-1.5.3.tar.bz2"
|
||||
MD5SUM="ca04e65d3b19ddeeedb8a49147ed642b"
|
||||
MAINTAINER="MagicMan"
|
||||
EMAIL="MagicMan07@bluebottle.com"
|
||||
APPROVED="BP{k}"
|
Loading…
Reference in a new issue