diff options
author | Aleksandar Samardzic <asamardzic@gmail.com> | 2010-05-11 22:26:42 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 22:26:42 +0200 |
commit | 56549cc1010f894ac5fac8158da18efb622aa3d4 (patch) | |
tree | 552734e80ad52770c808240fc6ba43409501dc61 /system/gxemul | |
parent | 9f19f18007800e89973f212c65659db8842c7cb6 (diff) | |
download | slackbuilds-56549cc1010f894ac5fac8158da18efb622aa3d4.tar.gz |
system/gxemul: Updated for version 0.4.6.6
Diffstat (limited to 'system/gxemul')
-rw-r--r-- | system/gxemul/gxemul.SlackBuild | 22 | ||||
-rw-r--r-- | system/gxemul/gxemul.info | 10 |
2 files changed, 20 insertions, 12 deletions
diff --git a/system/gxemul/gxemul.SlackBuild b/system/gxemul/gxemul.SlackBuild index 3a165f59a6..c15ea33b08 100644 --- a/system/gxemul/gxemul.SlackBuild +++ b/system/gxemul/gxemul.SlackBuild @@ -2,15 +2,14 @@ # Slackware build script for GXemul -# Written by Aleksandar B. Samardzic (<asamardzic@matf.bg.ac.yu>) - -set -e +# Written by Aleksandar Samardzic <asamardzic@gmail.com> PRGNAM=gxemul -VERSION=0.4.6 +VERSION=${VERSION:-0.4.6.6} ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -20,16 +19,24 @@ 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 -xzvf $CWD/$PRGNAM-$VERSION.tar.gz +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz cd $PRGNAM-$VERSION chown -R root:root . -chmod -R u+w,go+r-w,a-s . +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 {} \; CFLAGS="$SLKCFLAGS" ./configure make @@ -41,7 +48,8 @@ strip --strip-unneeded $PKG/usr/bin/gxemul gzip -9 $PKG/usr/man/man1/gxemul.1 mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION/html -install -m 0644 HISTORY LICENSE README RELEASE TODO $PKG/usr/doc/$PRGNAM-$VERSION +install -m 0644 HISTORY LICENSE README RELEASE.html TODO \ + $PKG/usr/doc/$PRGNAM-$VERSION install -m 0644 doc/* $PKG/usr/doc/$PRGNAM-$VERSION/html cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild diff --git a/system/gxemul/gxemul.info b/system/gxemul/gxemul.info index 3f436d820c..ad9581e59a 100644 --- a/system/gxemul/gxemul.info +++ b/system/gxemul/gxemul.info @@ -1,8 +1,8 @@ PRGNAM="gxemul" -VERSION="0.4.6" +VERSION="0.4.6.6" HOMEPAGE="http://gavare.se/gxemul/" -DOWNLOAD="http://gavare.se/gxemul/src/gxemul-0.4.6.tar.gz" -MD5SUM="462e4e77ad0721742f8655ab6ff0ec4f" -MAINTAINER="Aleksandar B. Samardzic" -EMAIL="asamardzic@matf.bg.ac.yu" +DOWNLOAD="http://gavare.se/gxemul/src/gxemul-0.4.6.6.tar.gz" +MD5SUM="0f8a428556a3938c2037dc6263e760ea" +MAINTAINER="Aleksandar Samardzic" +EMAIL="asamardzic@gmail.com" APPROVED="rworkman" |