homebrew-core/Formula/xlslib.rb
Victor Martinez 8dc451e3e2 Fixed several broken sourceforge.net download locations
Closes Homebrew/homebrew#20645.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-30 12:17:57 -07:00

13 lines
404 B
Ruby

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