system/tilda: Initial import
This commit is contained in:
parent
e92c9cbcbe
commit
76c68387d0
|
@ -0,0 +1,6 @@
|
||||||
|
Tilda is a Linux terminal taking after the likeness of many classic
|
||||||
|
terminals from first person shooter games, Quake, Doom and Half-Life
|
||||||
|
(to name a few), where the terminal has no border and is hidden from
|
||||||
|
the desktop until a key is pressed.
|
||||||
|
|
||||||
|
Required deps: VTE and libConfuse, available at slackbuilds.org
|
|
@ -0,0 +1,5 @@
|
||||||
|
|
||||||
|
if [ -x usr/bin/update-desktop-database ]; then
|
||||||
|
usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1
|
||||||
|
fi
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
tilda: tilda - an FPS-style terminal
|
||||||
|
tilda:
|
||||||
|
tilda: Tilda is a Linux terminal taking after the likeness of many classic
|
||||||
|
tilda: terminals from first person shooter games, Quake, Doom and Half-Life
|
||||||
|
tilda: (to name a few), where the terminal has no border and is hidden from
|
||||||
|
tilda: the desktop until a key is pressed.
|
||||||
|
tilda:
|
||||||
|
tilda: http://tilda.sourceforge.net/
|
||||||
|
tilda:
|
||||||
|
tilda:
|
||||||
|
tilda:
|
|
@ -0,0 +1,57 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Slackware build script for tilda
|
||||||
|
# Written by Erik Hanson erik@slackbuilds.org
|
||||||
|
# Modified by the SlackBuilds.org project
|
||||||
|
|
||||||
|
PRGNAM=tilda
|
||||||
|
VERSION=0.9.4
|
||||||
|
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.gz || exit 1
|
||||||
|
cd $PRGNAM-$VERSION || exit 1
|
||||||
|
chown -R root:root .
|
||||||
|
chmod -R u+w,go+r-w,a-s .
|
||||||
|
|
||||||
|
CFLAGS="$SLKCFLAGS" \
|
||||||
|
./configure \
|
||||||
|
--prefix=/usr \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--localstatedir=/var \
|
||||||
|
|| exit 1
|
||||||
|
|
||||||
|
make || exit 1
|
||||||
|
make install-strip DESTDIR=$PKG || exit 1
|
||||||
|
|
||||||
|
# Fix icon path in .desktop file
|
||||||
|
sed -i 's|Icon=tilda.png|Icon=/usr/share/pixmaps/tilda.png|' \
|
||||||
|
$PKG/usr/share/applications/tilda.desktop || exit 1
|
||||||
|
|
||||||
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||||
|
cp -a AUTHORS COPYING ChangeLog INSTALL NEWS README TODO \
|
||||||
|
$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
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
PRGNAM="tilda"
|
||||||
|
VERSION="0.09.4"
|
||||||
|
HOMEPAGE="http://tilda.sourceforge.net/"
|
||||||
|
DOWNLOAD="http://dl.sourceforge.net/tilda/tilda-0.9.4.tar.gz"
|
||||||
|
MD5SUM="773d47e3985f7e778b662a38b053c1df"
|
||||||
|
MAINTAINER="Erik Hanson"
|
||||||
|
EMAIL="erik@slackbuilds.org"
|
||||||
|
APPROVED="elohim,robw810"
|
Loading…
Reference in New Issue