2010-08-19 03:01:12 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Sqsh < Formula
|
2010-08-19 03:01:12 +00:00
|
|
|
homepage 'http://www.sqsh.org/'
|
2012-07-29 21:45:01 +00:00
|
|
|
url 'http://downloads.sourceforge.net/sourceforge/sqsh/sqsh-2.1.8.tar.gz'
|
|
|
|
sha1 'c16ed1c913169e19340971e3162cca8a8f23ed05'
|
2010-08-19 03:01:12 +00:00
|
|
|
|
2012-08-26 06:18:01 +00:00
|
|
|
option "enable-x", "Enable X windows support"
|
|
|
|
|
|
|
|
depends_on :x11 if build.include? "enable-x"
|
2010-08-19 03:01:12 +00:00
|
|
|
depends_on 'freetds'
|
2012-11-10 01:55:57 +00:00
|
|
|
depends_on 'gnu-readline'
|
2010-08-19 03:01:12 +00:00
|
|
|
|
|
|
|
def install
|
2012-08-26 06:18:01 +00:00
|
|
|
args = %W[
|
|
|
|
--prefix=#{prefix}
|
|
|
|
--mandir=#{man}
|
|
|
|
--with-readline
|
|
|
|
]
|
2010-08-19 03:01:12 +00:00
|
|
|
|
2012-11-10 01:55:57 +00:00
|
|
|
ENV['LIBDIRS'] = GnuReadline.new('gnu-readline').lib
|
|
|
|
ENV['INCDIRS'] = GnuReadline.new('gnu-readline').include
|
2010-08-19 03:01:12 +00:00
|
|
|
|
2012-08-26 06:18:01 +00:00
|
|
|
if build.include? "enable-x"
|
2010-08-19 03:01:12 +00:00
|
|
|
args << "--with-x"
|
2012-08-06 05:33:36 +00:00
|
|
|
args << "--x-libraries=#{MacOS::X11.lib}"
|
|
|
|
args << "--x-includes=#{MacOS::X11.include}"
|
2010-08-19 03:01:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
ENV['SYBASE'] = Freetds.new("freetds").prefix
|
|
|
|
system "./configure", *args
|
|
|
|
system "make", "install"
|
|
|
|
system "make", "install.man"
|
|
|
|
end
|
|
|
|
end
|