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

snapcast: migrate to pkgconf #199125

Merged
merged 1 commit into from
Nov 27, 2024
Merged
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
4 changes: 2 additions & 2 deletions Formula/s/snapcast.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

depends_on "boost" => :build
depends_on "cmake" => :build
depends_on "pkg-config" => :build
depends_on "pkgconf" => :build
depends_on "flac"
depends_on "libogg"
depends_on "libsoxr"
Expand All @@ -41,7 +41,7 @@
chmod 0555, share/"snapserver/plug-ins/meta_mpd.py"
end

test do

Check warning on line 44 in Formula/s/snapcast.rb

View workflow job for this annotation

GitHub Actions / Linux

`brew test --verbose snapcast` failed on Linux!

/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/test.rb:54:in `<main>'

Check warning on line 44 in Formula/s/snapcast.rb

View workflow job for this annotation

GitHub Actions / Linux

`brew test --verbose snapcast` failed on Linux!

/home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/test.rb:54:in `<main>'
server_pid = fork do
exec bin/"snapserver"
end
Expand All @@ -50,7 +50,7 @@
client_pid = spawn bin/"snapclient", out: w
w.close

sleep 5
sleep 10
Process.kill("SIGTERM", client_pid)

output = r.read
Expand Down
Loading