diff options
| author | Chris Thachuk | 2009-10-27 16:21:57 -0700 |
|---|---|---|
| committer | Max Howell | 2009-11-07 18:22:35 +0000 |
| commit | 0841885a4716ee307eb56e7c00a5e710e873e30d (patch) | |
| tree | dbb8bd1e00c4196cec1fdc7358a3406f0d8f8c4d /Library/Formula | |
| parent | b1cc1c8bd181e0f1413b2060a3addb6b5b6ed3eb (diff) | |
| download | homebrew-0841885a4716ee307eb56e7c00a5e710e873e30d.tar.bz2 | |
bibtex2html formula
bibtex2html is a collection of tools for translating from BibTeX to
HTML. They allow you to produce, from a set of bibliography files in
BibTeX format, a bibliography in HTML format.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/bibtex2html.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/bibtex2html.rb b/Library/Formula/bibtex2html.rb new file mode 100644 index 000000000..7db7c544c --- /dev/null +++ b/Library/Formula/bibtex2html.rb @@ -0,0 +1,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 |
