summaryrefslogtreecommitdiffstats
path: root/network/cryptcat-unix/cryptcat-unix.SlackBuild
diff options
context:
space:
mode:
author Jeanne-Kamikaze2010-05-13 00:36:03 +0200
committer David Somero2010-05-13 00:36:03 +0200
commit5c57bb1a71cf55006af9b147461770589cf11725 (patch)
tree5074e2620147ae12b2904ffed4baee93da384032 /network/cryptcat-unix/cryptcat-unix.SlackBuild
parent0d0b8134b7810b283ffc03c8407fe53bcef13b83 (diff)
downloadslackbuilds-5c57bb1a71cf55006af9b147461770589cf11725.tar.gz
network/cryptcat-unix: Updated for version 1.2.1
Diffstat (limited to 'network/cryptcat-unix/cryptcat-unix.SlackBuild')
-rw-r--r--network/cryptcat-unix/cryptcat-unix.SlackBuild11
1 files changed, 8 insertions, 3 deletions
diff --git a/network/cryptcat-unix/cryptcat-unix.SlackBuild b/network/cryptcat-unix/cryptcat-unix.SlackBuild
index c44f53ce4d..881d051194 100644
--- a/network/cryptcat-unix/cryptcat-unix.SlackBuild
+++ b/network/cryptcat-unix/cryptcat-unix.SlackBuild
@@ -23,10 +23,13 @@ DOC="Changelog Credits README.cryptcat README netcat.blurb"
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"
fi
set -e
@@ -61,9 +64,11 @@ cat $CWD/slack-desc > $PKG/install/slack-desc
( 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
)
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}