#!/bin/sh export INSTALL_PREFIX=/usr/local/ncurses OPTS="$OPTS --with-shared" OPTS="$OPTS --with-terminfo-dirs=${INSTALL_PREFIX}/share/terminfo" OPTS="$OPTS --with-pkg-config-libdir=${INSTALL_PREFIX}/lib/pkgconfig" OPTS="$OPTS --without-manpages" OPTS="$OPTS --without-tests" OPTS="$OPTS --enable-rpath" OPTS="$OPTS --enable-overwrite" OPTS="$OPTS --enable-pc-files" OPTS="$OPTS --disable-stripping" OPTS="$OPTS --disable-widec" OPTS="$OPTS --disable-home-terminfo" export PKG_CONFIG_LIBDIR=/tmp/FOO rm -rf /tmp/FOO mkdir /tmp/FOO ./configure --verbose $OPTS