diff options
| author | Brett Koonce | 2015-01-01 19:08:23 -0600 |
|---|---|---|
| committer | Brett Koonce | 2015-01-01 20:31:31 -0600 |
| commit | f4d9786929a27b753377a91abfb9bb2888784bee (patch) | |
| tree | d91e1693749588a7f10f6e157f4a5cdfead9d8c7 /Library | |
| parent | ede5a9788a248f079b76b0797e7cd7f5900eb138 (diff) | |
| download | homebrew-f4d9786929a27b753377a91abfb9bb2888784bee.tar.bz2 | |
clasp 3.1.1
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/clasp.rb | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Library/Formula/clasp.rb b/Library/Formula/clasp.rb index 5dc99ef91..3e80a03bc 100644 --- a/Library/Formula/clasp.rb +++ b/Library/Formula/clasp.rb @@ -1,9 +1,9 @@ -require 'formula' +require "formula" class Clasp < Formula - homepage 'http://potassco.sourceforge.net/' - url 'https://downloads.sourceforge.net/project/potassco/clasp/3.1.0/clasp-3.1.0-source.tar.gz' - sha1 '57297b641d6900a639e09c2a1c73549707f337b7' + homepage "http://potassco.sourceforge.net/" + url "https://downloads.sourceforge.net/project/potassco/clasp/3.1.1/clasp-3.1.1-source.tar.gz" + sha1 "01a35f05fb4c138bb0bfd8759f36b2eebafa7069" bottle do cellar :any @@ -12,16 +12,16 @@ class Clasp < Formula sha1 "47b98da2e221a1387780e3c262b96147efffd61e" => :lion end - option 'with-mt', 'Enable multi-thread support' + option "with-mt", "Enable multi-thread support" - depends_on 'tbb' if build.with? "mt" + depends_on "tbb" if build.with? "mt" def install if build.with? "mt" - ENV['TBB30_INSTALL_DIR'] = Formula["tbb"].opt_prefix - build_dir = 'build/release_mt' + ENV["TBB30_INSTALL_DIR"] = Formula["tbb"].opt_prefix + build_dir = "build/release_mt" else - build_dir = 'build/release' + build_dir = "build/release" end args = %W[ |
