87c91d094d
download.gnome.org is served over SSL, but the download itself is not. See: https://github.com/Homebrew/homebrew/pull/28026#issuecomment-39210557
18 lines
514 B
Ruby
18 lines
514 B
Ruby
require "formula"
|
|
|
|
class GupnpAv < Formula
|
|
homepage "https://wiki.gnome.org/GUPnP/"
|
|
url "http://ftp.gnome.org/pub/gnome/sources/gupnp-av/0.12/gupnp-av-0.12.5.tar.xz"
|
|
sha1 "02c54c99f8c6076fa033625db7a5450e1978a080"
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "intltool" => :build
|
|
depends_on "gettext"
|
|
depends_on "gupnp"
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|