2011-09-07 02:54:03 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class RubyBuild < Formula
|
|
|
|
homepage 'https://github.com/sstephenson/ruby-build'
|
2013-05-18 12:56:20 +00:00
|
|
|
url 'https://github.com/sstephenson/ruby-build/archive/v20130518.tar.gz'
|
|
|
|
sha1 '291bbadb2cf1201c976862da3a9da0a8300816f3'
|
2011-09-07 02:54:03 +00:00
|
|
|
|
|
|
|
head 'https://github.com/sstephenson/ruby-build.git'
|
|
|
|
|
2013-03-13 08:41:53 +00:00
|
|
|
depends_on 'autoconf' => :recommended
|
|
|
|
depends_on 'pkg-config' => :recommended
|
|
|
|
|
2011-09-07 02:54:03 +00:00
|
|
|
def install
|
|
|
|
ENV['PREFIX'] = prefix
|
|
|
|
system "./install.sh"
|
|
|
|
end
|
|
|
|
end
|