diff options
| author | Adam Malcontenti-Wilson | 2013-12-12 19:03:55 +1100 |
|---|---|---|
| committer | Adam Vandenberg | 2014-05-12 09:13:30 -0700 |
| commit | 7787b6c15f47a799262406cac94d6220d44172bc (patch) | |
| tree | de52e6423b54916a22d43762d7640125c763130c /Library | |
| parent | c9f9d8fb34e8cfaf0cb0ec3160d2886fc6f202ae (diff) | |
| download | homebrew-7787b6c15f47a799262406cac94d6220d44172bc.tar.bz2 | |
gupnp-tools 0.8.8
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/gupnp-tools.rb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Library/Formula/gupnp-tools.rb b/Library/Formula/gupnp-tools.rb new file mode 100644 index 000000000..22b646e8b --- /dev/null +++ b/Library/Formula/gupnp-tools.rb @@ -0,0 +1,24 @@ +require 'formula' + +class GupnpTools < Formula + homepage 'https://wiki.gnome.org/GUPnP/' + url 'http://ftp.gnome.org/pub/GNOME/sources/gupnp-tools/0.8/gupnp-tools-0.8.8.tar.xz' + sha256 '32ae89bc8d2b2777ca127d91509086fa7285a9211ff3ad1c2e68d17a137c0d98' + + depends_on :x11 + depends_on 'xz' => :build + depends_on 'pkg-config' => :build + depends_on 'intltool' => :build + depends_on 'gettext' + depends_on 'gupnp' + depends_on 'gupnp-av' + depends_on 'gtk+3' + depends_on 'gnome-icon-theme' + depends_on 'ossp-uuid' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make", "install" + end +end
\ No newline at end of file |
