tags:

views:

104

answers:

2

Normally macruby wants to install to /usr/local via 'rake install'

I want it in another location. How do I do this?

A: 

Running rake -T gives the options (duh, stupid me)

It tells me

rake install sym_instdir=/some/place

Is the trick to install to another directory and this does in fact work.

EDIT: I spoke too soon.

This makes the symlinks, but there is the framework_instdir option as well, but changing that doesn't seem to make any difference...

Daniel Huckstep
+1  A: 
$ DESTDIR = /some/place rake install

Look at the nightly built rake task for a more concrete example.

  • Matt
Matt Aimonetti