Skip to content

Commit

Permalink
Bumps in garden : ign-sensors (#1688)
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Peters <[email protected]>
  • Loading branch information
scpeters authored Nov 17, 2021
1 parent 2e81c04 commit 565b583
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 1 deletion.
1 change: 0 additions & 1 deletion Aliases/ignition-sensors7

This file was deleted.

65 changes: 65 additions & 0 deletions Formula/ignition-sensors7.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
class IgnitionSensors7 < Formula
desc "Sensors library for robotics applications"
homepage "https://github.com/ignitionrobotics/ign-sensors"
url "https://github.com/ignitionrobotics/ign-sensors.git", branch: "main"
version "6.999.999~0~20211116"
license "Apache-2.0"

depends_on "cmake" => [:build, :test]
depends_on "pkg-config" => [:build, :test]

depends_on "ignition-cmake2"
depends_on "ignition-common4"
depends_on "ignition-math6"
depends_on "ignition-msgs8"
depends_on "ignition-rendering7"
depends_on "ignition-transport11"
depends_on "sdformat12"

def install
cmake_args = std_cmake_args
cmake_args << "-DBUILD_TESTING=OFF"
cmake_args << "-DCMAKE_INSTALL_RPATH=#{rpath}"

system "cmake", ".", *cmake_args
system "make", "install"
end

test do
(testpath/"test.cpp").write <<-EOS
#include <ignition/sensors/Noise.hh>
int main()
{
ignition::sensors::Noise noise(ignition::sensors::NoiseType::NONE);
return 0;
}
EOS
(testpath/"CMakeLists.txt").write <<-EOS
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)
find_package(ignition-sensors7 QUIET REQUIRED)
add_executable(test_cmake test.cpp)
target_link_libraries(test_cmake ignition-sensors7::ignition-sensors7)
EOS
# test building with pkg-config
system "pkg-config", "ignition-sensors7"
cflags = `pkg-config --cflags ignition-sensors7`.split
ldflags = `pkg-config --libs ignition-sensors7`.split
system ENV.cc, "test.cpp",
*cflags,
*ldflags,
"-lc++",
"-o", "test"
system "./test"
# test building with cmake
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

0 comments on commit 565b583

Please sign in to comment.