From fd293657b81c2ba3dd6f7b168eafaff3a28ad702 Mon Sep 17 00:00:00 2001 From: Luis Henrique Date: Wed, 12 May 2010 23:29:29 +0200 Subject: games/pysweeper: Added to 12.2 repository --- games/pysweeper/README | 4 +++ games/pysweeper/pysweeper.SlackBuild | 58 +++++++++++++++++++++++++++++++++++ games/pysweeper/pysweeper.desktop | 8 +++++ games/pysweeper/pysweeper.info | 8 +++++ games/pysweeper/pysweeper.png | Bin 0 -> 2526 bytes games/pysweeper/slack-desc | 19 ++++++++++++ 6 files changed, 97 insertions(+) create mode 100644 games/pysweeper/README create mode 100644 games/pysweeper/pysweeper.SlackBuild create mode 100644 games/pysweeper/pysweeper.desktop create mode 100644 games/pysweeper/pysweeper.info create mode 100644 games/pysweeper/pysweeper.png create mode 100644 games/pysweeper/slack-desc diff --git a/games/pysweeper/README b/games/pysweeper/README new file mode 100644 index 0000000000..3e5f038d5b --- /dev/null +++ b/games/pysweeper/README @@ -0,0 +1,4 @@ +Pysweeper is yet another implementation of that classic +brain-bending puzzle game, Minesweeper. + +This requires pygame from SlackBuilds.org. diff --git a/games/pysweeper/pysweeper.SlackBuild b/games/pysweeper/pysweeper.SlackBuild new file mode 100644 index 0000000000..5c06a96093 --- /dev/null +++ b/games/pysweeper/pysweeper.SlackBuild @@ -0,0 +1,58 @@ +#!/bin/sh + +# Slackware build script for pysweeper + +# Written by Luis Henrique + +PRGNAM=pysweeper +VERSION=${VERSION:-1.0} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +set -e # Exit on most errors + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/Pysweeper-$VERSION.tar.gz +cd Pysweeper-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +# Install the program +python setup.py install --root $PKG + +# Move man pages to Slackware's default path +mv $PKG/usr/share/man $PKG/usr/man +( cd $PKG/usr/man + find . -type f -exec gzip -9 {} \; + for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done +) + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a LICENSE README $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +# Remove unnecessary documentation copy +rm -r $PKG/usr/share/doc + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc + +mkdir -p $PKG/usr/share/{applications,pixmaps} +cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop +cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz diff --git a/games/pysweeper/pysweeper.desktop b/games/pysweeper/pysweeper.desktop new file mode 100644 index 0000000000..08e2a58e55 --- /dev/null +++ b/games/pysweeper/pysweeper.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Name=PySweeper +Exec=pysweeper +Icon=pysweeper +GenericName=Minesweeper game +Terminal=false +Type=Application +Categories=Game;LogicGame; diff --git a/games/pysweeper/pysweeper.info b/games/pysweeper/pysweeper.info new file mode 100644 index 0000000000..7da22f58dd --- /dev/null +++ b/games/pysweeper/pysweeper.info @@ -0,0 +1,8 @@ +PRGNAM="pysweeper" +VERSION="1.0" +HOMEPAGE="http://www.canonical.org/pysweeper" +DOWNLOAD="http://www.canonical.org/pysweeper/source/Pysweeper-1.0.tar.gz" +MD5SUM="267b2bffbfc402918538f176ecab2d26" +MAINTAINER="Luis Henrique" +EMAIL="lmello.009@gmail.com" +APPROVED="rworkman" diff --git a/games/pysweeper/pysweeper.png b/games/pysweeper/pysweeper.png new file mode 100644 index 0000000000..e93f7442b2 Binary files /dev/null and b/games/pysweeper/pysweeper.png differ diff --git a/games/pysweeper/slack-desc b/games/pysweeper/slack-desc new file mode 100644 index 0000000000..5fe5efeb6a --- /dev/null +++ b/games/pysweeper/slack-desc @@ -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----------------------------------------------------| +pysweeper: PySweeper (minesweeper game) +pysweeper: +pysweeper: PySweeper is free and open source implementation of that classic +pysweeper: brain-bending puzzle game Minesweeper, written in Python and PyGame. +pysweeper: +pysweeper: Homepage: http://www.canonical.org/pysweeper +pysweeper: +pysweeper: +pysweeper: +pysweeper: +pysweeper: -- cgit v1.2.3