summaryrefslogtreecommitdiff
path: root/core/ncurses/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'core/ncurses/PKGBUILD')
-rw-r--r--core/ncurses/PKGBUILD14
1 files changed, 6 insertions, 8 deletions
diff --git a/core/ncurses/PKGBUILD b/core/ncurses/PKGBUILD
index b55c21040..af72c6073 100644
--- a/core/ncurses/PKGBUILD
+++ b/core/ncurses/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 150103 2012-02-12 13:47:59Z allan $
+# $Id: PKGBUILD 177037 2013-02-05 00:36:51Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: judd <jvinet@zeroflux.org>
pkgname=ncurses
pkgver=5.9
-pkgrel=3
+pkgrel=4
pkgdesc="System V Release 4.0 curses emulation library"
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/ncurses/"
@@ -21,23 +21,21 @@ build() {
cd ${srcdir}/ncursesw-build
../${pkgname}-${pkgver}/configure --prefix=/usr --mandir=/usr/share/man \
--with-shared --with-normal --without-debug --without-ada \
- --with-install-prefix=${pkgdir} --enable-widec \
- --enable-pc-files
- # add --enable-ext-colors with next soname bump
+ --enable-widec --enable-pc-files
+ # add --enable-ext-colors and --enable-ext-mouse with next soname bump
make
# libncurses.so.5 for external binary support
cd ${srcdir}/ncurses-build
[ $CARCH = "x86_64" ] && CONFIGFLAG="--with-chtype=long"
../${pkgname}-${pkgver}/configure --prefix=/usr \
- --with-shared --with-normal --without-debug --without-ada \
- --with-install-prefix=${pkgdir} $CONFIGFLAG
+ --with-shared --with-normal --without-debug --without-ada $CONFIGFLAG
make
}
package() {
cd ${srcdir}/ncursesw-build
- make install
+ make DESTDIR=${pkgdir} install
# Fool packages looking to link to non-wide-character ncurses libraries
for lib in ncurses form panel menu; do