Created
April 20, 2017 10:08
-
-
Save anildigital/1f4e52c4df1d01c0fd8a217c7cdfa95c to your computer and use it in GitHub Desktop.
libnice formula (required by Janus Gateway)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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