diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/freetds.rb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/freetds.rb b/Library/Formula/freetds.rb index 54496f474..fc0b5d3bd 100644 --- a/Library/Formula/freetds.rb +++ b/Library/Formula/freetds.rb @@ -1,9 +1,9 @@ -require 'formula' +require "formula" class Freetds < Formula - homepage 'http://www.freetds.org/' - url 'http://mirrors.ibiblio.org/freetds/stable/freetds-0.91.tar.gz' - sha1 '3ab06c8e208e82197dc25d09ae353d9f3be7db52' + homepage "http://www.freetds.org/" + url "http://mirrors.ibiblio.org/freetds/stable/freetds-0.91.tar.gz" + sha1 "3ab06c8e208e82197dc25d09ae353d9f3be7db52" revision 1 bottle do @@ -13,7 +13,7 @@ class Freetds < Formula end head do - url 'https://git.gitorious.org/freetds/freetds.git' + url "https://git.gitorious.org/freetds/freetds.git" depends_on :autoconf depends_on :automake @@ -41,7 +41,7 @@ class Freetds < Formula ] if build.with? "unixodbc" - args << "--with-unixodbc=#{Formula['unixodbc'].prefix}" + args << "--with-unixodbc=#{Formula["unixodbc"].prefix}" end if build.include? "enable-msdblib" @@ -62,9 +62,9 @@ class Freetds < Formula ENV.universal_binary if build.universal? system "./configure", *args - system 'make' + system "make" ENV.j1 # Or fails to install on multi-core machines - system 'make install' + system "make", "install" end test do |
