homebrew-core/Formula/ruby-build.rb
Erik Michaels-Ober ba6741ac29 ruby-build 20130514
Closes Homebrew/homebrew#19827.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-05-15 08:48:03 +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/v20130514.tar.gz'
sha1 '1347cee973773fb4934c1f51e12cdf0a9dac17ac'
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