diff options
author | Sebastien BALLET <slacker6896@gmail.com> | 2017-07-15 06:56:19 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-07-15 06:56:19 +0700 |
commit | 4044cd56b54ee23278dbfc61056d8ec02bdf40ee (patch) | |
tree | 731c908dce62c39e4b99322be643534e694cbef8 /python/python-whisper/python-whisper.SlackBuild | |
parent | 887125e0ccc5ef59ac0340e4770400d2c64081c5 (diff) |
python/python-whisper: Fix ownership.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python-whisper/python-whisper.SlackBuild')
-rw-r--r-- | python/python-whisper/python-whisper.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/python-whisper/python-whisper.SlackBuild b/python/python-whisper/python-whisper.SlackBuild index 180ec9992dc1..b6cc2d690875 100644 --- a/python/python-whisper/python-whisper.SlackBuild +++ b/python/python-whisper/python-whisper.SlackBuild @@ -31,7 +31,7 @@ SRCNAM=whisper if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) ARCH=i486 ;; + i?86) ARCH=i586 ;; arm*) ARCH=arm ;; *) ARCH=$( uname -m ) ;; esac @@ -42,8 +42,8 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" LIBDIRSUFFIX="" elif [ "$ARCH" = "i686" ]; then SLKCFLAGS="-O2 -march=i686 -mtune=i686" @@ -78,7 +78,7 @@ for i in $PKG/usr/bin/*.py ; do mv $i ${i/.py/} ; done # Manpages thanks to Debian folks! mkdir -p $PKG/usr/man -cp -a $CWD/man1 $PKG/usr/man +cp $CWD/man1 $PKG/usr/man find $PKG/usr/man -type f -exec gzip -9 {} \; mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION |