aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bibtex2html.rb
blob: f1a960bcaf39b246b6d448f742875b1d8a8f56e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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/'
  sha1 '710ecf4e20f8dffabb0684222d7de3cf502cb691'

  depends_on 'objective-caml'

  def install
    # See: https://trac.macports.org/ticket/26724
    inreplace 'Makefile.in' do |s|
      s.remove_make_var! 'STRLIB'
    end

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