aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/robodoc.rb
blob: ae1f171ca7ad609c3d7803819f2fd6706a4754c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Robodoc < Formula
  url 'http://rfsber.home.xs4all.nl/Robo/robodoc-4.99.41.tar.gz'
  md5 '986ff954e0ba5a9c407384fc4b05303d'
  homepage 'http://rfsber.home.xs4all.nl/Robo/robodoc.html'
  head 'https://github.com/gumpu/ROBODoc.git'

  def install
    system "autoreconf", "-f", "-i" if ARGV.build_head?
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end
end