aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gupnp-av.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/gupnp-av.rb b/Library/Formula/gupnp-av.rb
new file mode 100644
index 000000000..d0fc9d8ac
--- /dev/null
+++ b/Library/Formula/gupnp-av.rb
@@ -0,0 +1,19 @@
+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.4.tar.xz'
+ sha256 '548a9cef8ab3007734e20a4ce284c422ae299b7e024a4824299f6ae7e3dd7a5b'
+
+ depends_on 'xz' => :build
+ 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