aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Malcontenti-Wilson2013-12-12 19:03:19 +1100
committerAdam Vandenberg2014-05-12 09:13:29 -0700
commit4523ff34ecf7e918a02f40d2d9e1227d2b147bf4 (patch)
treef57e7d8afd68e2c3f05c5a06e3e47f936acf5e6f /Library/Formula
parentd0a42497a19c9c96137d61bda5a556903350face (diff)
downloadhomebrew-4523ff34ecf7e918a02f40d2d9e1227d2b147bf4.tar.bz2
gupnp-av 0.12.4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-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