Skip to content

Instantly share code, notes, and snippets.

@anildigital
Created April 20, 2017 10:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anildigital/1f4e52c4df1d01c0fd8a217c7cdfa95c to your computer and use it in GitHub Desktop.
Save anildigital/1f4e52c4df1d01c0fd8a217c7cdfa95c to your computer and use it in GitHub Desktop.
libnice formula (required by Janus Gateway)
class Libnice < Formula
desc "GLib ICE implementation"
homepage "https://wiki.freedesktop.org/nice/"
url "https://nice.freedesktop.org/releases/libnice-0.1.7.tar.gz"
sha256 "4ed165aa2203136dce548c7cef735d8becf5d9869793f96b99dcbbaa9acf78d8"
depends_on "pkg-config" => :build
depends_on "glib"
depends_on "gstreamer"
def install
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking",
"--disable-silent-rules"
system "make", "install"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment