2012-11-28 21:36:46 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Xlslib < Formula
|
|
|
|
homepage 'http://sourceforge.net/projects/xlslib'
|
2013-06-20 23:08:35 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/xlslib/xlslib-old/xlslib-2.3.4.zip'
|
2012-11-28 21:36:46 +00:00
|
|
|
sha1 '5f06a4195239753083594fb83cf0178d12545f15'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|