added Bibtool

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

Fixes Homebrew/homebrew#2572
This commit is contained in:
François Garillot 2010-09-24 15:02:45 +02:00 committed by Adam Vandenberg
parent be1a812a01
commit 980c18c120

14
Formula/bib-tool.rb Normal file
View file

@ -0,0 +1,14 @@
require 'formula'
class BibTool <Formula
url 'http://sarovar.org/frs/download.php/1298/BibTool-2.51.tar.gz'
homepage 'http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html'
version '2.51'
md5 '0404647e6d1b2d4c2a34a6d1f4f9e375'
def install
system "./configure", "--prefix", prefix
system "make"
system "make install"
end
end