blob: 6997a41e133e80bcbf35dd7632a62c9a7fbfd3cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  | 
require 'formula'
class RubyBuild < Formula
  homepage 'https://github.com/sstephenson/ruby-build'
  url 'https://github.com/sstephenson/ruby-build/archive/v20140214.tar.gz'
  sha1 'f4051c40abc05ea6e6af45aeadb27d74d5ab36d8'
  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
  |