diff options
Diffstat (limited to 'desktop/whaw')
-rw-r--r-- | desktop/whaw/slack-desc | 2 | ||||
-rw-r--r-- | desktop/whaw/whaw.SlackBuild | 10 | ||||
-rw-r--r-- | desktop/whaw/whaw.info | 4 |
3 files changed, 11 insertions, 5 deletions
diff --git a/desktop/whaw/slack-desc b/desktop/whaw/slack-desc index f190d21908..96ae42d2d9 100644 --- a/desktop/whaw/slack-desc +++ b/desktop/whaw/slack-desc @@ -13,7 +13,7 @@ whaw: an intuitive user interface to quickly lay out windows without whaw: having to replace or modify the set up of your window manager of whaw: choice. whaw: -whaw: http://repetae.net/computer/whaw/ +whaw: Homepage: http://repetae.net/computer/whaw/ whaw: whaw: whaw: diff --git a/desktop/whaw/whaw.SlackBuild b/desktop/whaw/whaw.SlackBuild index f2c1970324..f4e6c767c7 100644 --- a/desktop/whaw/whaw.SlackBuild +++ b/desktop/whaw/whaw.SlackBuild @@ -18,6 +18,8 @@ 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 @@ -40,8 +42,10 @@ CFLAGS="$SLKCFLAGS" CPPFLAGS="$SLKCFLAGS" make make install DESTDIR=$PKG ( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null || true + find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | \ + xargs strip --strip-unneeded 2> /dev/null ) # Compress the man page @@ -65,4 +69,4 @@ 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 +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/desktop/whaw/whaw.info b/desktop/whaw/whaw.info index d596746cfb..3e480dd693 100644 --- a/desktop/whaw/whaw.info +++ b/desktop/whaw/whaw.info @@ -3,6 +3,8 @@ VERSION="0.1.2" HOMEPAGE="http://repetae.net/computer/whaw/" DOWNLOAD="http://repetae.net/computer/whaw/drop/whaw-0.1.2.tar.gz" MD5SUM="4d45e7b8e99ecd3433749de47ed1e9c0" +DOWNLOAD_x86_64="UNTESTED" +MD5SUM_x86_64="" MAINTAINER="Phillip Warner" EMAIL="pc_warner@yahoo.com" -APPROVED="rworkman" +APPROVED="dsomero" |