https://github.com/ruby/curses [ 1 ] was http://ncurses-ruby.berlios.de
-
2006-07-25 - 1.1 on (distribution not recorded)
Table of Contents [hide]
2006-07-25 - 1.1 ∞
ncurses-ruby is small and easy to set up:
- a) Using your package manager (if you are so lucky) with something like
apt-get install ncurses-ruby
-
b) At the commandline, do a
gem install ncurses
- Make sure that you have
rubygems
and the Ruby header files (usually calledruby-devel
), both hopefully from your package manager.
- Make sure that you have
-
c) Build download ncurses-ruby from source (what I did)
- Make sure you have the Ruby header files (usually called
ruby-devel
).
- Make sure you have the Ruby header files (usually called
Building from source ∞
tar -xvvjr ncurses-ruby-1.1.tar.bz2 cd ncurses-ruby-1.1 ruby extconf.rb make su make install
What I did:
su # Install the ruby development headers: apt-get install ruby-devel tar -xvvjr ncurses-ruby-1.1.tar.bz2 cd ncurses-ruby-1.1 ruby extconf.rb make # Resolve an issue with "install" not being used, and my not having "ginstall": ln -s /usr/bin/install /usr/bin/ginstall make install # Clean up: cd .. rm -rf ncurses-ruby-1.1
ncurses-ruby on the Sharp Zaurus SL-series ∞
They made 0.9.1 for the ARM, but it seems to have been abandoned since then.
I seem to be unable to get this going. I think I need the ncurses-devel
headers.
Footnotes
Last updated 2020-06-21 at 05:48:18
ported