homebrew-core/Formula/freetds.rb

15 lines
411 B
Ruby
Raw Normal View History

2009-11-05 02:43:32 +00:00
require 'formula'
class Freetds < Formula
url 'http://ibiblio.org/pub/Linux/ALPHA/freetds/stable/freetds-0.91.tar.gz'
2009-11-05 02:43:32 +00:00
homepage 'http://www.freetds.org/'
md5 'b14db5823980a32f0643d1a84d3ec3ad'
2009-11-05 02:43:32 +00:00
def install
system "./configure", "--prefix=#{prefix}", "--with-tdsver=7.1", "--mandir=#{man}"
2009-11-05 02:43:32 +00:00
system 'make'
2011-08-24 21:23:36 +00:00
ENV.j1 # Or fails to install on multi-core machines
2009-11-05 02:43:32 +00:00
system 'make install'
end
end