homebrew-core/Formula/ace.rb

45 lines
1.6 KiB
Ruby
Raw Normal View History

class Ace < Formula
desc "ADAPTIVE Communication Environment: OO network programming in C++"
2015-10-16 16:23:26 +00:00
homepage "https://www.dre.vanderbilt.edu/~schmidt/ACE.html"
url "http://download.dre.vanderbilt.edu/previous_versions/ACE-6.4.0.tar.bz2"
sha256 "6a7fd5f23f6a004bb21978767df4e36adea078cd344e45bab50266213586c001"
2014-06-29 03:47:43 +00:00
bottle do
2015-09-15 05:55:01 +00:00
cellar :any
2016-07-04 11:00:42 +00:00
sha256 "0b53c1e14820be00af7115e9afefa09a380803589597038d962bb8ab16b79331" => :el_capitan
sha256 "d3e7e45197f7d7643d675ff84057df769947f6c0a9185388d23b2a28375760f0" => :yosemite
sha256 "72f21357797c350fe547a7978f402e564cf328c3662a0e321d1ec293f4899139" => :mavericks
2014-06-29 03:47:43 +00:00
end
def install
2013-10-23 11:59:23 +00:00
# Figure out the names of the header and makefile for this version
# of OSX and link those files to the standard names.
2014-05-21 06:41:42 +00:00
name = MacOS.cat.to_s.delete "_"
2013-10-23 11:59:23 +00:00
ln_sf "config-macosx-#{name}.h", "ace/config.h"
ln_sf "platform_macosx_#{name}.GNU", "include/makeinclude/platform_macros.GNU"
# Set up the environment the way ACE expects during build.
2014-05-21 06:41:42 +00:00
ENV["ACE_ROOT"] = buildpath
ENV["DYLD_LIBRARY_PATH"] = "#{buildpath}/lib"
# Done! We go ahead and build.
2014-04-17 04:10:10 +00:00
system "make", "-C", "ace", "-f", "GNUmakefile.ACE",
"INSTALL_PREFIX=#{prefix}",
"LDFLAGS=",
"DESTDIR=",
"INST_DIR=/ace",
"debug=0",
"shared_libs=1",
"static_libs=0",
"install"
system "make", "-C", "examples"
pkgshare.install "examples"
end
test do
cp_r "#{pkgshare}/examples/Log_Msg/.", testpath
system "./test_callback"
end
end