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.
This commit is contained in:
parent
c5308b474a
commit
560da18a43
1 changed files with 15 additions and 0 deletions
15
Formula/bibtex2html.rb
Normal file
15
Formula/bibtex2html.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue