diff options
| author | Hermiod | 2014-02-12 00:20:26 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2014-02-21 17:45:25 +0000 |
| commit | a77143c5be54207120039b376fdb44ae7a09c2e6 (patch) | |
| tree | cf2fbafdb68d6515d16dc2c13c67c6b2fbbbddc7 /Library/Formula | |
| parent | fe097a66db483ca29647743f52302bacba8e1827 (diff) | |
| download | homebrew-a77143c5be54207120039b376fdb44ae7a09c2e6.tar.bz2 | |
libcppa 0.8.1
Closes #26642.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/libcppa.rb | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/Library/Formula/libcppa.rb b/Library/Formula/libcppa.rb index 32082609e..3e9276ab6 100644 --- a/Library/Formula/libcppa.rb +++ b/Library/Formula/libcppa.rb @@ -2,17 +2,14 @@ require 'formula' class Libcppa < Formula homepage 'http://libcppa.blogspot.it' - url 'https://github.com/Neverlord/libcppa/archive/V0.7.1.tar.gz' - sha1 '0f1f685e94bfa16625370b978ff26deaf799b94e' + url 'http://github.com/Neverlord/libcppa/archive/V0.8.1.tar.gz' + sha1 'd4f096aae2bb72e254ad6df45edf3fb62370acaa' depends_on :macos => :lion depends_on 'cmake' => :build option 'with-opencl', 'Build with OpenCL actors' - - def caveats - "Libcppa requires a C++11 compliant compiler" - end + option 'with-examples', 'Build examples' fails_with :gcc do cause 'libcppa requires a C++11 compliant compiler.' @@ -29,9 +26,8 @@ class Libcppa < Formula --disable-context-switching ] - if build.with? 'opencl' - args << "--with-opencl" - end + args << '--with-opencl' if build.with? 'opencl' + args << '--no-examples' unless build.with? 'examples' system "./configure", *args system "make" |
