homebrew-core/Formula/ruby-build.rb

18 lines
442 B
Ruby

require 'formula'
class RubyBuild < Formula
homepage 'https://github.com/sstephenson/ruby-build'
url 'https://github.com/sstephenson/ruby-build/archive/v20130628.tar.gz'
sha1 'a26df829fa089807c30422a2df04348b3b4ec1b5'
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