homebrew-core/Formula/ruby-build.rb
Mislav Marohnić 051f2eb53e ruby-build 20140919
Closes Homebrew/homebrew#32425.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-09-19 17:11:09 +01: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/v20140919.tar.gz"
sha1 "5f69c58697c649f8961f55043e266e51fc39279d"
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