aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bib-tool.rb
blob: eeb03d737d503726a0a85613d6e9d1df6fc644eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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'
  md5 '0404647e6d1b2d4c2a34a6d1f4f9e375'

  def install
    system "./configure", "--prefix", prefix
    system "make"
    system "make install"
  end
end