aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorBrett Koonce2014-07-20 18:53:52 -0700
committerBrett Koonce2014-07-20 21:59:13 -0700
commit803998d87706353b992249242962cc2c18678f9b (patch)
treee42946794fffb8b26bcf8b94d9eb8eeb6e135275 /Library
parent7e05cf0f2a3be71cdfc86bb28f85995b5edc4b4a (diff)
downloadhomebrew-803998d87706353b992249242962cc2c18678f9b.tar.bz2
libcppa 0.9.4
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libcppa.rb18
1 files changed, 9 insertions, 9 deletions
diff --git a/Library/Formula/libcppa.rb b/Library/Formula/libcppa.rb
index 16a8694ba..9a087aef8 100644
--- a/Library/Formula/libcppa.rb
+++ b/Library/Formula/libcppa.rb
@@ -1,9 +1,9 @@
-require 'formula'
+require "formula"
class Libcppa < Formula
- homepage 'http://libcppa.blogspot.it'
- url 'http://github.com/Neverlord/libcppa/archive/V0.9.3.tar.gz'
- sha1 'b9fce68bc4e5688cc75cfc9add5ec1feb105ab7d'
+ homepage "http://libcppa.blogspot.it"
+ url "http://github.com/Neverlord/libcppa/archive/V0.9.4.tar.gz"
+ sha1 "eba8002f087e55498edc0bf996fb7f211d7feec6"
bottle do
cellar :any
@@ -12,12 +12,12 @@ class Libcppa < Formula
sha1 "d30dbe35371a62ddd9f34ada0210a3770d05191d" => :lion
end
- depends_on 'cmake' => :build
+ depends_on "cmake" => :build
needs :cxx11
- option 'with-opencl', 'Build with OpenCL actors'
- option 'with-examples', 'Build examples'
+ option "with-opencl", "Build with OpenCL actors"
+ option "with-examples", "Build examples"
def install
ENV.cxx11
@@ -28,8 +28,8 @@ class Libcppa < Formula
--disable-context-switching
]
- args << '--with-opencl' if build.with? 'opencl'
- args << '--no-examples' if build.without? 'examples'
+ args << "--with-opencl" if build.with? "opencl"
+ args << "--no-examples" if build.without? "examples"
system "./configure", *args
system "make"