homebrew-core/Formula/gupnp.rb

23 lines
628 B
Ruby
Raw Normal View History

2014-05-11 16:21:35 +00:00
require "formula"
class Gupnp < Formula
2014-05-11 16:21:35 +00:00
homepage "https://wiki.gnome.org/GUPnP/"
2014-06-01 16:03:15 +00:00
url "http://ftp.gnome.org/pub/gnome/sources/gupnp/0.20/gupnp-0.20.12.tar.xz"
sha1 "fbc23c0fa0df70f44d50b2ed88dc2c4dc06d166c"
2014-05-11 16:21:35 +00:00
depends_on "pkg-config" => :build
depends_on "intltool" => :build
depends_on "gettext"
depends_on "glib"
depends_on "libsoup"
depends_on "gssdp"
def install
2014-05-11 16:21:35 +00:00
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
end