Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ignition-transport9: new formula #1065

Merged
merged 4 commits into from
Jul 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Aliases/ignition-transport9

This file was deleted.

64 changes: 64 additions & 0 deletions Formula/ignition-transport9.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
class IgnitionTransport9 < Formula
desc "Transport middleware for robotics"
homepage "https://ignitionrobotics.org"
url "https://github.com/ignitionrobotics/ign-transport/archive/876236053887dea5f0727a7e7e52d3580aac597d.tar.gz"
version "9.999.999~0~20200716~876236"
sha256 "a5ab1c8e23877f4485eeed21243ad3bef284846e4be2a4d550ecfdab648a6017"
license "Apache-2.0"

head "https://github.com/ignitionrobotics/ign-transport", :branch => "master"

depends_on "doxygen" => [:build, :optional]
depends_on "protobuf-c" => :build

depends_on "cmake"
depends_on "cppzmq"
depends_on "ignition-cmake2"
depends_on "ignition-msgs6"
depends_on "ignition-tools"
depends_on :macos => :high_sierra # c++17
depends_on "ossp-uuid"
depends_on "pkg-config"
depends_on "protobuf"
depends_on "zeromq"

def install
system "cmake", ".", *std_cmake_args
system "make", "install"
end

test do
(testpath/"test.cpp").write <<-EOS
#include <iostream>
#include <ignition/transport.hh>
int main() {
ignition::transport::NodeOptions options;
return 0;
}
EOS
(testpath/"CMakeLists.txt").write <<-EOS
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
find_package(ignition-transport9 QUIET REQUIRED)
add_executable(test_cmake test.cpp)
target_link_libraries(test_cmake ignition-transport9::ignition-transport9)
EOS
system "pkg-config", "ignition-transport9"
cflags = `pkg-config --cflags ignition-transport9`.split(" ")
system ENV.cc, "test.cpp",
*cflags,
"-L#{lib}",
"-lignition-transport9",
"-lc++",
"-o", "test"
ENV["IGN_PARTITION"] = rand((1 << 32) - 1).to_s
system "./test"
mkdir "build" do
system "cmake", ".."
system "make"
system "./test_cmake"
end
# check for Xcode frameworks in bottle
cmd_not_grep_xcode = "! grep -rnI 'Applications[/]Xcode' #{prefix}"
system cmd_not_grep_xcode
end
end