blob: 886aff67cc2382c064376c8839b7f2bfeb5c47ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class RubyBuild < Formula
homepage 'https://github.com/sstephenson/ruby-build'
url 'https://github.com/sstephenson/ruby-build/archive/v20130501.tar.gz'
sha1 'f220a167bb6302d065bcc9c1b0a1e93228595cab'
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
|