diff options
Diffstat (limited to 'source/tcl')
-rwxr-xr-x | source/tcl/tcl/tcl.SlackBuild | 8 | ||||
-rwxr-xr-x | source/tcl/tk/tk.SlackBuild | 4 |
2 files changed, 7 insertions, 5 deletions
diff --git a/source/tcl/tcl/tcl.SlackBuild b/source/tcl/tcl/tcl.SlackBuild index 03d51ca3..ff0ad5a3 100755 --- a/source/tcl/tcl/tcl.SlackBuild +++ b/source/tcl/tcl/tcl.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2008, 2009 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2012 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -21,7 +21,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -VERSION=${VERSION:-8.5.9} +VERSION=${VERSION:-8.5.11} # See also version number 8.5 in the symlinks below...) BUILD=${BUILD:-1} @@ -35,6 +35,8 @@ if [ -z "$ARCH" ]; then esac fi +NUMJOBS=${NUMJOBS:-" -j7 "} + CWD=$(pwd) TMP=${TMP:-/tmp} PKG=$TMP/package-tcl @@ -89,7 +91,7 @@ CFLAGS="$SLKCFLAGS" \ --enable-man-compression=gzip \ ${CONFARGS} \ --build=$ARCH-slackware-linux -make -j4 || exit 1 +make $NUMJOBS || exit 1 make install DESTDIR=$PKG # Some sources require Tcl's private headers, which might not be the diff --git a/source/tcl/tk/tk.SlackBuild b/source/tcl/tk/tk.SlackBuild index a100a8a2..f2adfc08 100755 --- a/source/tcl/tk/tk.SlackBuild +++ b/source/tcl/tk/tk.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2008, 2009 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2008, 2009, 2012 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -21,7 +21,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -VERSION=${VERSION:-8.5.9} +VERSION=${VERSION:-8.5.11} # See also version number 8.5 in the symlinks below...) BUILD=${BUILD:-1} |