aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorChris Thachuk2009-10-27 16:21:57 -0700
committerMax Howell2009-11-07 18:22:35 +0000
commit0841885a4716ee307eb56e7c00a5e710e873e30d (patch)
treedbb8bd1e00c4196cec1fdc7358a3406f0d8f8c4d /Library/Formula
parentb1cc1c8bd181e0f1413b2060a3addb6b5b6ed3eb (diff)
downloadhomebrew-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.rb15
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