homebrew-core/Formula/ruby-build.rb
Erik Michaels-Ober 8a4195ddea ruby-build 20130923
Closes Homebrew/homebrew#22753.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-09-23 07:40:57 -07: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/v20130923.tar.gz'
sha1 '7d5f5392892f125ef2f8dc49083622e3751fdc7a'
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