diff options
| author | Jason L. Shiffer | 2011-06-12 10:26:53 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2011-08-18 23:30:00 -0700 |
| commit | c5e327e5fbb903c9425027ad8c023dff02c2590f (patch) | |
| tree | d695e874d506733c2e5e27c2e423ba7a05f7e8d2 /Library | |
| parent | f3e535a7211b1ac591975f1881c350c897f46844 (diff) | |
| download | homebrew-c5e327e5fbb903c9425027ad8c023dff02c2590f.tar.bz2 | |
robodoc 4.99.41
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/robodoc.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/robodoc.rb b/Library/Formula/robodoc.rb new file mode 100644 index 000000000..ca0abcaff --- /dev/null +++ b/Library/Formula/robodoc.rb @@ -0,0 +1,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 'git://github.com/gumpu/ROBODoc' + + def install + system "autoreconf", "-f", "-i" if ARGV.build_head? + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" + system "make install" + end +end |
