aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrançois Garillot2010-09-24 15:02:45 +0200
committerAdam Vandenberg2010-11-02 22:13:55 -0700
commite61e0975cac033a5b4aea2f4d1148e6d240fa438 (patch)
treec30337b3f3a7a11669d587b7e0f659bf0bda32b9
parentc5e37908765ce0702adb18ab2379bc61be8e8594 (diff)
downloadhomebrew-e61e0975cac033a5b4aea2f4d1148e6d240fa438.tar.bz2
added Bibtool
Signed-off-by: Adam Vandenberg <flangy@gmail.com> Fixes #2572
-rw-r--r--Library/Formula/bib-tool.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/bib-tool.rb b/Library/Formula/bib-tool.rb
new file mode 100644
index 000000000..2909a9ec6
--- /dev/null
+++ b/Library/Formula/bib-tool.rb
@@ -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