diff options
author | Heinz Wiesinger <pprkut@liwjatan.at> | 2010-05-12 17:42:47 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 17:42:47 +0200 |
commit | e085666eecf31235f86020afad879db02788bbe0 (patch) | |
tree | 7581517492edbaa6ee9117032f5a404ef47ad5bc /multimedia/smpeg/smpeg.SlackBuild | |
parent | 15ec87e7111bd3562fe549556a097bacc8d884c3 (diff) |
multimedia/smpeg: Updated for version r374
Diffstat (limited to 'multimedia/smpeg/smpeg.SlackBuild')
-rw-r--r-- | multimedia/smpeg/smpeg.SlackBuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/multimedia/smpeg/smpeg.SlackBuild b/multimedia/smpeg/smpeg.SlackBuild index 4b714397fe7f4..a717debcf3236 100644 --- a/multimedia/smpeg/smpeg.SlackBuild +++ b/multimedia/smpeg/smpeg.SlackBuild @@ -1,9 +1,8 @@ #!/bin/sh # Slackware build script for smpeg -# Written by ppr:kut <hmwiesinger@gmx.at> -# Copyright 2007 Heinz Wiesinger +# Copyright 2007-2009 Heinz Wiesinger <pprkut@liwjatan.at> # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,10 +23,11 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=smpeg -VERSION=r370_20071015 +VERSION=r374 ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} + CWD=$(pwd) TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -37,6 +37,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 @@ -59,7 +61,9 @@ CXXFLAGS="$SLKCFLAGS" \ --sysconfdir=/etc \ --localstatedir=/var \ --mandir=/usr/man \ - --disable-static + --disable-static \ + --build=$ARCH-slackware-linux \ + --host=$ARCH-slackware-linux make make install-strip DESTDIR=$PKG |