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

raylib 5.5 #198159

Merged
merged 4 commits into from
Nov 19, 2024
Merged

raylib 5.5 #198159

Show file tree
Hide file tree
Changes from 2 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: 1 addition & 0 deletions .github/autobump.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2442,6 +2442,7 @@ rattler-build
rav1e
raven
raxml-ng
raylib
rbtools
rbw
rclone
Expand Down
5 changes: 3 additions & 2 deletions Formula/o/odin.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ class Odin < Formula
revision: "e6475fec4d2a3e34099b24a7a3bf890c7a3ef8d9"
version "2024-11"
license "BSD-3-Clause"
revision 1
head "https://github.com/odin-lang/Odin.git", branch: "master"

bottle do
Expand Down Expand Up @@ -64,8 +65,8 @@ def install
ln_s Formula["glfw"].lib/"libglfw3.a", buildpath/glfw_installpath/"libglfw3.a"

ln_s Formula["raylib"].lib/"libraylib.a", buildpath/raylib_installpath/"libraylib.a"
# This is actually raylib 5.0, but upstream had not incremented this number yet when it released.
ln_s Formula["raylib"].lib/shared_library("libraylib", "4.5.0"),
# In order to match the version 500 used in odin
ln_s Formula["raylib"].lib/shared_library("libraylib", "5.5.0"),
buildpath/raylib_installpath/shared_library("libraylib", "500")

resource("raygui").stage do
Expand Down
4 changes: 2 additions & 2 deletions Formula/r/raylib.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Raylib < Formula

Check notice on line 1 in Formula/r/raylib.rb

View workflow job for this annotation

GitHub Actions / Linux

Bottle cache hit

Bottle for raylib built at abf1e278e9f (Merge b69de67bba1001f52b041835bdc07ce0cd5ab5ac into a20f1015831a856ecf8217dafb2b2e5fe1a46b9f, 2024-11-19)

Check notice on line 1 in Formula/r/raylib.rb

View workflow job for this annotation

GitHub Actions / macOS 15-arm64

Bottle cache hit

Bottle for raylib built at 4cb193d1516 (Merge 53715e2f8125d57bcf0a649e81ddb8396eb16ee6 into 6432910f33e846aca809b567f2f690982f563840, 2024-11-18)

Check notice on line 1 in Formula/r/raylib.rb

View workflow job for this annotation

GitHub Actions / macOS 14-arm64

Bottle cache hit

Bottle for raylib built at 4cb193d1516 (Merge 53715e2f8125d57bcf0a649e81ddb8396eb16ee6 into 6432910f33e846aca809b567f2f690982f563840, 2024-11-18)

Check notice on line 1 in Formula/r/raylib.rb

View workflow job for this annotation

GitHub Actions / macOS 13-arm64

Bottle cache hit

Bottle for raylib built at 4cb193d1516 (Merge 53715e2f8125d57bcf0a649e81ddb8396eb16ee6 into 6432910f33e846aca809b567f2f690982f563840, 2024-11-18)
desc "Simple and easy-to-use library to learn videogames programming"
homepage "https://www.raylib.com/"
url "https://github.com/raysan5/raylib/archive/refs/tags/5.0.tar.gz"
sha256 "98f049b9ea2a9c40a14e4e543eeea1a7ec3090ebdcd329c4ca2cf98bc9793482"
url "https://github.com/raysan5/raylib/archive/refs/tags/5.5.tar.gz"
sha256 "aea98ecf5bc5c5e0b789a76de0083a21a70457050ea4cc2aec7566935f5e258e"
license "Zlib"
head "https://github.com/raysan5/raylib.git", branch: "master"

Expand Down
Loading