Skip to content

Instantly share code, notes, and snippets.

@ThYpHo0n
Created December 4, 2017 10:12
Show Gist options
  • Save ThYpHo0n/032561f8ee0d267348dd07fc0354e9d4 to your computer and use it in GitHub Desktop.
Save ThYpHo0n/032561f8ee0d267348dd07fc0354e9d4 to your computer and use it in GitHub Desktop.
Snapcast Homebrew formula example
class Snapcast < Formula
desc "Snapcast"
homepage "https://github.com/badaix/snapcast"
url "https://github.com/badaix/snapcast.git", :tag => "v0.12.0", :revision => "331e965a4e83e9fcbbcf44ff0a39bcb96a0a7621"
head "https://github.com/badaix/snapcast", :using => :git, :branch => :master
depends_on "libogg"
depends_on "libvorbis"
depends_on "asio"
depends_on "flac"
def install
system "make", "TARGET=MACOS"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment