ba6741ac29
Closes Homebrew/homebrew#19827. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
17 lines
442 B
Ruby
17 lines
442 B
Ruby
require 'formula'
|
|
|
|
class RubyBuild < Formula
|
|
homepage 'https://github.com/sstephenson/ruby-build'
|
|
url 'https://github.com/sstephenson/ruby-build/archive/v20130514.tar.gz'
|
|
sha1 '1347cee973773fb4934c1f51e12cdf0a9dac17ac'
|
|
|
|
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
|