xlsLib 2.3.4

Closes Homebrew/homebrew#16295.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Christian Savard 2012-11-28 16:36:46 -05:00 committed by Adam Vandenberg
parent 6095bab453
commit 5ed3892419

13
Formula/xlslib.rb Normal file
View file

@ -0,0 +1,13 @@
require 'formula'
class Xlslib < Formula
homepage 'http://sourceforge.net/projects/xlslib'
url 'http://sourceforge.net/projects/xlslib/files/xlslib-2.3.4.zip'
sha1 '5f06a4195239753083594fb83cf0178d12545f15'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end