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

class Bibtex2html < Formula
  url 'http://www.lri.fr/~filliatr/ftp/bibtex2html/bibtex2html-1.94.tar.gz'
  homepage 'http://www.lri.fr/~filliatr/bibtex2html/'
  md5 '16e6656156e10c07747163a0914058b8'

  depends_on 'objective-caml'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make"
    system "make install"
  end
end