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

chickadee: 0.10.0 revision 1 (update regex) #219

Closed
wants to merge 1 commit into from
Closed
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
11 changes: 6 additions & 5 deletions Formula/chickadee.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
homepage "https://dthompson.us/projects/chickadee.html"
url "https://files.dthompson.us/chickadee/chickadee-0.10.0.tar.gz"
sha256 "132f53b6e59a1a51c6d9c618c2a248b76457ed73545b6f0e1a5fe4b8f5020f75"
revision 1

bottle do
root_url "https://github.com/aconchillo/homebrew-guile/releases/download/chickadee-0.10.0"
Expand Down Expand Up @@ -31,11 +32,11 @@

# Use Homebrew prefix instead instead.
inreplace buildpath/"chickadee/config.scm" do |s|
s.gsub!(%r{".*/libopenal"}, "\"#{HOMEBREW_PREFIX}/opt/openal-soft/lib/libopenal\"")
s.gsub!(%r{".*/libvorbisfile"}, "\"#{HOMEBREW_PREFIX}/opt/libvorbis/lib/libvorbisfile\"")
s.gsub!(%r{".*/libmpg123"}, "\"#{HOMEBREW_PREFIX}/opt/mpg123/lib/libmpg123\"")
s.gsub!(%r{".*/libfreetype"}, "\"#{HOMEBREW_PREFIX}/opt/freetype/lib/libfreetype\"")
s.gsub!(%r{".*/libreadline"}, "\"#{HOMEBREW_PREFIX}/opt/readline/lib/libreadline\"")
s.gsub!(/.*\/libopenal/, "\"#{HOMEBREW_PREFIX}/opt/openal-soft/lib/libopenal\"")

Check failure on line 35 in Formula/chickadee.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

Style/RegexpLiteral: Use `%r` around regular expression.
s.gsub!(/.*\/libvorbisfile/, "\"#{HOMEBREW_PREFIX}/opt/libvorbis/lib/libvorbisfile\"")

Check failure on line 36 in Formula/chickadee.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

Style/RegexpLiteral: Use `%r` around regular expression.
s.gsub!(/.*\/libmpg123/, "\"#{HOMEBREW_PREFIX}/opt/mpg123/lib/libmpg123\"")

Check failure on line 37 in Formula/chickadee.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

Style/RegexpLiteral: Use `%r` around regular expression.
s.gsub!(/.*\/libfreetype/, "\"#{HOMEBREW_PREFIX}/opt/freetype/lib/libfreetype\"")

Check failure on line 38 in Formula/chickadee.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

Style/RegexpLiteral: Use `%r` around regular expression.
s.gsub!(/.*\/libreadline/, "\"#{HOMEBREW_PREFIX}/opt/readline/lib/libreadline\"")

Check failure on line 39 in Formula/chickadee.rb

View workflow job for this annotation

GitHub Actions / test-bot (ubuntu-22.04)

Style/RegexpLiteral: Use `%r` around regular expression.
end

system "make", "install"
Expand Down
Loading