-
Notifications
You must be signed in to change notification settings - Fork 75
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
gz-jetty: new formula #2942
base: master
Are you sure you want to change the base?
gz-jetty: new formula #2942
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,42 @@ | ||||||
class GzIonic < Formula | ||||||
include Language::Python::Virtualenv | ||||||
|
||||||
desc "Collection of gazebo simulation software" | ||||||
homepage "https://github.com/gazebosim/gz-ionic" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
url "https://github.com/gazebosim/gz-jetty.git", branch: "main" | ||||||
version "0.999.999-0-20250116" | ||||||
license "Apache-2.0" | ||||||
|
||||||
head "https://github.com/gazebosim/gz-ionic.git", branch: "main" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
depends_on "cmake" => :build | ||||||
|
||||||
depends_on "gz-cmake4" | ||||||
depends_on "gz-common6" | ||||||
depends_on "gz-fuel-tools10" | ||||||
depends_on "gz-gui10" | ||||||
depends_on "gz-launch9" | ||||||
depends_on "gz-math8" | ||||||
depends_on "gz-msgs11" | ||||||
depends_on "gz-physics8" | ||||||
depends_on "gz-plugin3" | ||||||
depends_on "gz-rendering9" | ||||||
depends_on "gz-sensors9" | ||||||
depends_on "gz-sim10" | ||||||
depends_on "gz-tools2" | ||||||
depends_on "gz-transport14" | ||||||
depends_on "gz-utils3" | ||||||
depends_on "pkgconf" | ||||||
depends_on "sdformat15" | ||||||
|
||||||
def install | ||||||
mkdir "build" do | ||||||
system "cmake", "..", *std_cmake_args | ||||||
system "make", "install" | ||||||
end | ||||||
end | ||||||
|
||||||
test do | ||||||
assert_predicate share/"gz/gz-ionic/release_notes.md", :exist? | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
end | ||||||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.