homebrew-core/Formula/ruby-build.rb
Mislav Marohnić bad8cea6e7 ruby-build 20141028
Closes Homebrew/homebrew#33681.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-10-28 19:48:27 +00:00

21 lines
557 B
Ruby

require "formula"
class RubyBuild < Formula
head "https://github.com/sstephenson/ruby-build.git"
homepage "https://github.com/sstephenson/ruby-build"
url "https://github.com/sstephenson/ruby-build/archive/v20141028.tar.gz"
sha1 "89995bbdd9bb009cd9be2f6c1e76b5d8a28e8291"
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"
end
end