2010-09-24 13:02:45 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class BibTool < Formula
|
2010-09-24 13:02:45 +00:00
|
|
|
homepage 'http://www.gerd-neugebauer.de/software/TeX/BibTool/index.en.html'
|
2012-11-12 00:22:18 +00:00
|
|
|
url 'http://www.gerd-neugebauer.de/software/TeX/BibTool/BibTool-2.55.tar.gz'
|
|
|
|
sha1 'b36eee9929419a4d0a6d407adc60dbe0ffa9fce9'
|
|
|
|
|
2013-11-13 16:46:31 +00:00
|
|
|
depends_on :autoconf
|
2012-11-12 00:22:18 +00:00
|
|
|
depends_on :automake
|
|
|
|
depends_on :libtool
|
2010-09-24 13:02:45 +00:00
|
|
|
|
|
|
|
def install
|
2012-11-12 00:22:18 +00:00
|
|
|
# Needd to pick up the --without-kpathsea argument
|
|
|
|
system "autoreconf", "-fi"
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--without-kpathsea"
|
2010-09-24 13:02:45 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|