2011-03-10 05:11:03 +00:00
|
|
|
class BibTool < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Manipulates BibTeX databases"
|
2016-06-10 21:30:53 +00:00
|
|
|
homepage "http://www.gerd-neugebauer.de/software/TeX/BibTool/en/"
|
2017-01-15 00:44:56 +00:00
|
|
|
url "https://github.com/ge-ne/bibtool/releases/download/BibTool_2_67/BibTool-2.67.tar.gz"
|
|
|
|
sha256 "5b6c4160975a926356e8e59d0e5c01ac2a7be337ecace2494918fc2a46d9d784"
|
2012-11-12 00:22:18 +00:00
|
|
|
|
2015-01-16 07:44:04 +00:00
|
|
|
bottle do
|
2017-01-15 01:56:45 +00:00
|
|
|
sha256 "9611f8ab9db1f0ae2918bf22d3169a80eeacd0a4e457437b4b131c36e7687d41" => :sierra
|
|
|
|
sha256 "5f7813e70bfaa668da0b3f438237e0fef7628808c3b5cc56c26012e2cf54f09d" => :el_capitan
|
|
|
|
sha256 "39956f91c1332b2518841436655eeb828dd7562683e5bc1f55bc7a5e7c308c80" => :yosemite
|
2015-01-16 07:44:04 +00:00
|
|
|
end
|
|
|
|
|
2010-09-24 13:02:45 +00:00
|
|
|
def install
|
2012-11-12 00:22:18 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--without-kpathsea"
|
2010-09-24 13:02:45 +00:00
|
|
|
system "make"
|
2015-01-16 07:25:46 +00:00
|
|
|
system "make", "install"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"test.bib").write <<-EOS.undent
|
|
|
|
@article{Homebrew,
|
|
|
|
title = {Something},
|
|
|
|
author = {Someone},
|
|
|
|
journal = {Something},
|
|
|
|
volume = {1},
|
|
|
|
number = {2},
|
|
|
|
pages = {3--4}
|
|
|
|
}
|
|
|
|
EOS
|
|
|
|
system "#{bin}/bibtool", "test.bib"
|
2010-09-24 13:02:45 +00:00
|
|
|
end
|
|
|
|
end
|