blob: 55225ad1ad07eab7abc62ec18f5721f0bf32115c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Bibutils <Formula
url 'http://www.scripps.edu/~cdputnam/software/bibutils/bibutils_4.9_src.tgz'
homepage 'http://www.scripps.edu/~cdputnam/software/bibutils/'
md5 '1cc0724b821ae9749b91a267207105dc'
def install
system "./configure --install-dir #{prefix}"
inreplace "Makefile" do |s|
s.change_make_var! "CC", "CC=\"#{ENV.cc}\""
end
system "make"
executables = %w{ bib2xml ris2xml end2xml endx2xml med2xml isi2xml copac2xml
biblatex2xml ebi2xml wordbib2xml xml2ads xml2bib xml2end xml2isi
xml2ris xml2wordbib modsclean }
executables.each { |x| bin.install "bin/#{x}" }
end
end
|