Skip to content

Instantly share code, notes, and snippets.

@lanzafame
Forked from cnruby/install ncurses on macosx
Last active August 29, 2015 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lanzafame/2a874e9d9a6af8a99554 to your computer and use it in GitHub Desktop.
Save lanzafame/2a874e9d9a6af8a99554 to your computer and use it in GitHub Desktop.
$ curl -O ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.9.tar.gz
$ tar -xzvf ncurses-5.9.tar.gz
$ cd ./ncurses-5.9
$ ./configure --prefix=/usr/local \
--without-cxx --without-cxx-binding --without-ada --without-progs --without-curses-h \
--with-shared --without-debug \
--enable-widec --enable-const --enable-ext-colors --enable-sigwinch --enable-wgetch-events \
&& make
$ sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment