88779ade49
Closes Homebrew/homebrew#14653.
20 lines
520 B
Ruby
20 lines
520 B
Ruby
require 'formula'
|
|
|
|
class Robodoc < Formula
|
|
homepage 'http://rfsber.home.xs4all.nl/Robo/robodoc.html'
|
|
url 'http://rfsber.home.xs4all.nl/Robo/robodoc-4.99.41.tar.gz'
|
|
sha1 'f2dfb53c667681bf0c5424be9b14f3a1e7edab9b'
|
|
|
|
head 'https://github.com/gumpu/ROBODoc.git'
|
|
|
|
if build.head?
|
|
depends_on :automake
|
|
depends_on :libtool
|
|
end
|
|
|
|
def install
|
|
system "autoreconf", "-f", "-i" if build.head?
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|