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