diff options
Diffstat (limited to 'source/ap/sc/sc.SlackBuild')
-rwxr-xr-x | source/ap/sc/sc.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/ap/sc/sc.SlackBuild b/source/ap/sc/sc.SlackBuild index 96fa56ea..b37a9e75 100755 --- a/source/ap/sc/sc.SlackBuild +++ b/source/ap/sc/sc.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2008, 2009 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2015 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,12 +22,12 @@ VERSION=7.16 -BUILD=${BUILD:-3} +BUILD=${BUILD:-4} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then case "$( uname -m )" in - i?86) export ARCH=i486 ;; + i?86) export ARCH=i586 ;; arm*) export ARCH=arm ;; # Unless $ARCH is already set, use uname -m for all other archs: *) export ARCH=$( uname -m ) ;; @@ -80,7 +80,7 @@ cat sc.1 | gzip -9c > $PKG/usr/man/man1/sc.1.gz cat psc.1 | gzip -9c > $PKG/usr/man/man1/psc.1.gz mkdir -p $PKG/usr/doc/sc-$VERSION -cp -a CHANGES README TODO $PKG/usr/doc/sc-$VERSION +cp -a CHANGES README TODO SC.MACROS $PKG/usr/doc/sc-$VERSION chmod 644 $PKG/usr/doc/sc-$VERSION/* cat tutorial.sc > $PKG/usr/lib${LIBDIRSUFFIX}/sc/tutorial.sc |