homebrew-core/Formula/bib-tool.rb

14 lines
388 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class BibTool < Formula
homepage 'http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html'
url 'http://www.gerd-neugebauer.de/software/TeX/BibTool/BibTool-2.57.tar.gz'
sha1 'a6e80c86d347a39f3883e552db2dd4deb72b0e86'
2012-11-12 00:22:18 +00:00
def install
2012-11-12 00:22:18 +00:00
system "./configure", "--prefix=#{prefix}", "--without-kpathsea"
system "make"
system "make install"
end
end