aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-08-24 17:07:22 +0100
committerMike McQuaid2014-08-24 17:14:20 +0100
commitb46b2abbe094ca2347ebb9be0333a60c07787617 (patch)
treec5d6a5a7727e7a4a073837be0c9803aecab8a0d6 /Library
parentef3f8c320db1691c71ecbb90d8380dbcdf7d2bb6 (diff)
downloadhomebrew-b46b2abbe094ca2347ebb9be0333a60c07787617.tar.bz2
freetds: use double-quotes and "make", "install".
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/freetds.rb16
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