965eaf5159
Old formulas are valid, but should be maintained in a separate branch if that's what is needed. The exact way we are going to do this is not yet agreed on.
27 lines
830 B
Ruby
27 lines
830 B
Ruby
require 'brewkit'
|
|
|
|
# TODO de-version the include and lib directories
|
|
|
|
class Ruby <Formula
|
|
@url='ftp://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p243.tar.gz'
|
|
@homepage='http://www.ruby-lang.org/en/'
|
|
@md5='515bfd965814e718c0943abf3dde5494'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--enable-shared",
|
|
"--enable-pthread",
|
|
"CFLAGS=-D_XOPEN_SOURCE=1"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
|
|
def skip_clean? path
|
|
# TODO only skip the clean for the files that need it, we didn't get a
|
|
# comment about why we're skipping the clean, so you'll need to figure
|
|
# that out first --mxcl
|
|
true
|
|
end
|
|
end
|