blob: 3be5ef60dfdeeebe77c08f7d27f69ecc15915dd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class RubyBuild < Formula
url 'https://github.com/sstephenson/ruby-build/tarball/v20111230'
homepage 'https://github.com/sstephenson/ruby-build'
md5 '82241efbee5836419446c0ab78596b3a'
head 'https://github.com/sstephenson/ruby-build.git'
def install
ENV['PREFIX'] = prefix
system "./install.sh"
end
end
|