mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
games/gtklife: Added to 12.2 repository
This commit is contained in:
parent
52ded40386
commit
8a8cc49e86
5 changed files with 98 additions and 0 deletions
1
games/gtklife/README
Normal file
1
games/gtklife/README
Normal file
|
@ -0,0 +1 @@
|
|||
GtkLife is a fast, featureful, open-source Conway's Life program for *nix.
|
60
games/gtklife/gtklife.SlackBuild
Normal file
60
games/gtklife/gtklife.SlackBuild
Normal file
|
@ -0,0 +1,60 @@
|
|||
#!/bin/sh
|
||||
|
||||
# Slackware build script for gtklife
|
||||
|
||||
# Written by B. Watson (yalhcru@gmail.com)
|
||||
|
||||
PRGNAM=gtklife
|
||||
VERSION=${VERSION:-5.1}
|
||||
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"
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
fi
|
||||
|
||||
set -e
|
||||
|
||||
rm -rf $PKG
|
||||
mkdir -p $TMP $PKG $OUTPUT
|
||||
cd $TMP
|
||||
rm -rf $PRGNAM-$VERSION
|
||||
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
|
||||
cd $PRGNAM-$VERSION
|
||||
chown -R root:root .
|
||||
chmod -R a-s,u+w,go+r-w .
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
./configure \
|
||||
--prefix=/usr \
|
||||
--with-docdir=/usr/doc/$PRGNAM-$VERSION/html
|
||||
|
||||
make
|
||||
make install-strip prefix=$PKG/usr docdir=$PKG/usr/doc/$PRGNAM-$VERSION/html
|
||||
|
||||
mkdir -p $PKG/usr/share/pixmaps
|
||||
cat icon_48x48.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 NEWS README $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
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
|
10
games/gtklife/gtklife.desktop
Normal file
10
games/gtklife/gtklife.desktop
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Name=GtkLife
|
||||
GenericName=GtkLife Conway Life Simulation
|
||||
Type=Application
|
||||
Exec=gtklife
|
||||
Icon=gtklife
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
Categories=Game;Simulation;
|
8
games/gtklife/gtklife.info
Normal file
8
games/gtklife/gtklife.info
Normal file
|
@ -0,0 +1,8 @@
|
|||
PRGNAM="gtklife"
|
||||
VERSION="5.1"
|
||||
HOMEPAGE="http://ironphoenix.org/tril/gtklife/"
|
||||
DOWNLOAD="http://ironphoenix.org/tril/gtklife/gtklife-5.1.tar.gz"
|
||||
MD5SUM="a92ce6e2f9c66ede050143cf95f6afcd"
|
||||
MAINTAINER="B. Watson"
|
||||
EMAIL="yalhcru@gmail.com"
|
||||
APPROVED="rworkman"
|
19
games/gtklife/slack-desc
Normal file
19
games/gtklife/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------------------------------------------------------|
|
||||
gtklife: gtklife (Conway's Life program)
|
||||
gtklife:
|
||||
gtklife: GtkLife is a fast, featureful, open-source Conway's Life program
|
||||
gtklife: for *nix.
|
||||
gtklife:
|
||||
gtklife:
|
||||
gtklife:
|
||||
gtklife:
|
||||
gtklife:
|
||||
gtklife:
|
||||
gtklife:
|
Loading…
Reference in a new issue