homebrew-core/Formula/ruby-build.rb
Erik Michaels-Ober ab83441f7f ruby-build 20130907
Closes Homebrew/homebrew#22370.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-09-07 12:05:42 +01:00

17 lines
442 B
Ruby

require 'formula'
class RubyBuild < Formula
homepage 'https://github.com/sstephenson/ruby-build'
url 'https://github.com/sstephenson/ruby-build/archive/v20130907.tar.gz'
sha1 'e6c3929745a88f01240f0b9411b7a1b111aa597e'
head 'https://github.com/sstephenson/ruby-build.git'
depends_on 'autoconf' => :recommended
depends_on 'pkg-config' => :recommended
def install
ENV['PREFIX'] = prefix
system "./install.sh"
end
end