homebrew-core/Formula/sqsh.rb

36 lines
880 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Sqsh < Formula
homepage 'http://www.sqsh.org/'
url 'http://downloads.sourceforge.net/project/sqsh/sqsh/sqsh-2.3/sqsh-2.3.tgz'
sha1 '225bd6cfa5dcad4fae419becc5217fb3465c66d1'
2012-08-26 06:18:01 +00:00
option "enable-x", "Enable X windows support"
depends_on :x11 if build.include? "enable-x"
depends_on 'freetds'
depends_on 'readline'
def install
2012-08-26 06:18:01 +00:00
args = %W[
--prefix=#{prefix}
--mandir=#{man}
--with-readline
]
ENV['LIBDIRS'] = Readline.new('readline').lib
ENV['INCDIRS'] = Readline.new('readline').include
2012-08-26 06:18:01 +00:00
if build.include? "enable-x"
args << "--with-x"
args << "--x-libraries=#{MacOS::X11.lib}"
args << "--x-includes=#{MacOS::X11.include}"
end
ENV['SYBASE'] = Freetds.new("freetds").prefix
system "./configure", *args
system "make", "install"
system "make", "install.man"
end
end