homebrew-core/Formula/ruby-build.rb
Erik Michaels-Ober 5dd365b20a ruby-build 20130806
Closes Homebrew/homebrew#21688.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-08-06 06:50:50 -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/v20130806.tar.gz'
sha1 'cd038bfb6ccdf7f3e8c284450a29326eacb3f1c6'
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