homebrew-core/Formula/gupnp-av.rb

19 lines
514 B
Ruby
Raw Normal View History

2014-05-11 19:04:39 +00:00
require "formula"
class GupnpAv < Formula
2014-05-11 19:04:39 +00:00
homepage "https://wiki.gnome.org/GUPnP/"
2014-06-16 03:27:42 +00:00
url "http://ftp.gnome.org/pub/gnome/sources/gupnp-av/0.12/gupnp-av-0.12.6.tar.xz"
sha1 "8ea44b3b9bd1dcb2ad56d56943fc1cd235570d00"
2014-05-11 19:04:39 +00:00
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