I got it to run on Leopard with the following steps (already have Ruby, etc., set up - install XCode from the OS X installation DVD if you don't already have it):
- Downloaded the Unix/Linux distribution (CamelliaLib-2.7.0.tar.gz)
- Opened up the tarball
cd CamelliaLib-2.7.0/
./configure
sudo make
sudo make install
Cool, so that's Camellia installed. Next up for the Ruby part.
First, I looked for the gem with gem search -r camellia
:
*** REMOTE GEMS ***
camellia (2.7.0)
camellia-rb (1.2)
Nice, so all it should take is a simple gem install
.
$ sudo gem install camellia
ERROR: could not find gem camellia locally or in a repository
Weird. Anyway, I installed the other gem:
$ sudo gem install camellia-rb
And sure enough (you'll need to use require 'rubygems'
first unless you've got a different setup like me):
$ irb
irb(main):001:0> require 'camellia'
=> true
Hope that gets you started.