diff options
Diffstat (limited to 'games/playonlinux/playonlinux.SlackBuild')
-rw-r--r-- | games/playonlinux/playonlinux.SlackBuild | 62 |
1 files changed, 33 insertions, 29 deletions
diff --git a/games/playonlinux/playonlinux.SlackBuild b/games/playonlinux/playonlinux.SlackBuild index a1ecfddcc2..abc3645326 100644 --- a/games/playonlinux/playonlinux.SlackBuild +++ b/games/playonlinux/playonlinux.SlackBuild @@ -1,44 +1,41 @@ #!/bin/sh -# SlackBuild for PlayOnLinux - Slackware 13.1 -# http://www.playonlinux.com/ -# Written by Giovanne Castro <giovannefc@terra.com.br> +# Slackware build script for PlayOnLinux + +# Copyright 2010 by Giovanne Castro, Campinas, Sao Paulo, Brazil <giovannefc@ig.com.br> +# 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. PRGNAM=playonlinux -PKGNAM= -VERSION=${VERSION:-3.7.6} -ARCH=${ARCH:-noarch} +VERSION=${VERSION:-3.7.7} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -if [ -z "$ARCH" ]; then - case "$( uname -m )" in - i?86) ARCH=i486 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; - esac -fi +# No flags/configure needed because it is writen in python programing language. +ARCH=noarch 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" -else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" -fi - -set -e +set -e # Exit on most errors rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT @@ -53,22 +50,29 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# Delete obsolete backup files find . -name '*~*' -exec rm -rf {} \; + +# Copy libraries program mkdir -p $PKG/usr/share/$PRGNAM -cp -r * $PKG/usr/share/$PRGNAM +cp -a * $PKG/usr/share/$PRGNAM +# Copy desktop entries mkdir -p $PKG/usr/share/applications cat $CWD/PlayOnLinux.desktop > \ $PKG/usr/share/applications/PlayOnLinux.desktop +# Copy icon mkdir -p $PKG/usr/share/pixmaps cp -a $PKG/usr/share/$PRGNAM/etc/playonlinux.png $PKG/usr/share/pixmaps/ +# Creates executable entry mkdir -p $PKG/usr/bin echo "#!/bin/bash" > $PKG/usr/bin/$PRGNAM echo "/usr/share/$PRGNAM/$PRGNAM \"\$@\"" >> $PKG/usr/bin/$PRGNAM chmod +x $PKG/usr/bin/$PRGNAM +# Copy documentation mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a \ LICENCE CHANGELOG \ |