diff options
author | Andrew Psaltis <ampsaltis@gmail.com> | 2010-05-13 00:38:17 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 00:38:17 +0200 |
commit | cd3c2891edd50e9b4536626c6955715621f0a791 (patch) | |
tree | 94d5618ed3441d3f4f09c165284266140561a968 /network/socat/socat.SlackBuild | |
parent | bef8dc4b565aa6c575f683384eb5eb8b918d64d5 (diff) | |
download | slackbuilds-cd3c2891edd50e9b4536626c6955715621f0a791.tar.gz |
network/socat: Updated for version 1.7.1.0
Diffstat (limited to 'network/socat/socat.SlackBuild')
-rw-r--r-- | network/socat/socat.SlackBuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/network/socat/socat.SlackBuild b/network/socat/socat.SlackBuild index 0da56b7265..fe7af5a276 100644 --- a/network/socat/socat.SlackBuild +++ b/network/socat/socat.SlackBuild @@ -36,10 +36,13 @@ 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" fi DOCS="BUGREPORTS COPYING* DEVELOPMENT EXAMPLES FAQ README* SECURITY" @@ -63,6 +66,7 @@ CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ --sysconfdir=/etc \ --localstatedir=/var \ --mandir=/usr/man \ @@ -91,4 +95,4 @@ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc 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} |