homebrew-core/Formula/ruby-build.rb
Erik Michaels-Ober f855572471 ruby-build 20140408
Closes Homebrew/homebrew#28242.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-04-08 13:08:21 +01:00

22 lines
573 B
Ruby

require 'formula'
class RubyBuild < Formula
homepage 'https://github.com/sstephenson/ruby-build'
url 'https://github.com/sstephenson/ruby-build/archive/v20140408.tar.gz'
sha1 '5f706cd3b0b31d6240cd92fe8191e0d8265de910'
head 'https://github.com/sstephenson/ruby-build.git'
depends_on 'autoconf' => [:recommended, :run]
depends_on 'pkg-config' => [:recommended, :run]
depends_on 'openssl' => :recommended
def install
ENV['PREFIX'] = prefix
system "./install.sh"
end
test do
system "#{bin}/ruby-build --version | grep #{version}"
end
end