diff options
Diffstat (limited to 'source/l/ncurses/ncurses.SlackBuild')
-rwxr-xr-x | source/l/ncurses/ncurses.SlackBuild | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/source/l/ncurses/ncurses.SlackBuild b/source/l/ncurses/ncurses.SlackBuild index 0b83dcd1..992789e3 100755 --- a/source/l/ncurses/ncurses.SlackBuild +++ b/source/l/ncurses/ncurses.SlackBuild @@ -1,6 +1,6 @@ #!/bin/sh -# Copyright 2000-2011, 2013 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2000-2011, 2013, 2014, 2015 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -22,7 +22,7 @@ PKGNAM=ncurses VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-4} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -61,13 +61,14 @@ CFLAGS="$SLKCFLAGS" \ --mandir=/usr/man \ --with-gpm \ --disable-termcap \ - --with-normal \ --with-shared \ + --with-cxx-shared \ + --without-normal \ + --without-debug \ + --without-profile \ --enable-symlinks \ --enable-pc-files \ --with-pkg-config-libdir=/usr/lib${LIBDIRSUFFIX}/pkgconfig \ - --without-debug \ - --without-profile \ --without-ada \ $X86_64OPTS \ --program-suffix="" \ @@ -98,8 +99,8 @@ if [ ! -z "$(ls $CWD/patches/ncurses-$VERSION-2*.patch.gz 2> /dev/null)" ]; then fi # Apply upstream patch collection: -xzcat $CWD/ncurses-5.9-20130504-patch.sh.xz > ncurses-5.9-20130504-patch.sh -sh ncurses-5.9-20130504-patch.sh +xzcat $CWD/ncurses-5.9-20141206-patch.sh.xz > ncurses-5.9-20141206-patch.sh +sh ncurses-5.9-20141206-patch.sh zcat $CWD/ncurses.mkhashsize.diff.gz | patch -p1 --verbose || exit 1 |