diff options
| author | Adam Malcontenti-Wilson | 2013-07-01 02:11:18 +1000 |
|---|---|---|
| committer | Adam Vandenberg | 2013-07-01 08:22:18 -0700 |
| commit | d1970c66846bf278fcb7e2ded9906e35e75b9a3b (patch) | |
| tree | d80af4d3869c23aaaefd8eb8def2fd03fff272e8 /Library | |
| parent | 38c7281d76023a19fd0eb42ffde1b529c3c8ff0a (diff) | |
| download | homebrew-d1970c66846bf278fcb7e2ded9906e35e75b9a3b.tar.bz2 | |
gupnp 0.20.3
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/gupnp.rb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Library/Formula/gupnp.rb b/Library/Formula/gupnp.rb new file mode 100644 index 000000000..e6cc0b04e --- /dev/null +++ b/Library/Formula/gupnp.rb @@ -0,0 +1,21 @@ +require 'formula' + +class Gupnp < Formula + homepage 'https://wiki.gnome.org/GUPnP/' + url 'http://ftp.gnome.org/pub/GNOME/sources/gupnp/0.20/gupnp-0.20.3.tar.xz' + sha256 'ed7db7506506434d0fd272e3866d7ae985af5b9d7e9e5e120f8581ade90869f0' + + depends_on 'xz' => :build + depends_on 'pkg-config' => :build + depends_on 'intltool' => :build + depends_on 'gettext' + depends_on 'glib' + depends_on 'libsoup' + depends_on 'gssdp' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make", "install" + end +end |
