aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDavid Höppner2010-03-06 11:37:37 +0100
committerDavid Höppner2010-03-06 11:41:59 +0100
commit33f3b9e83761738b8b0cdb0e0f862567bd98f3af (patch)
tree723e948313f02f43552555dae012c6e4f3c33f36 /Library
parent77c3eb4a5104906f3e21873b00e68b33d3313807 (diff)
downloadhomebrew-33f3b9e83761738b8b0cdb0e0f862567bd98f3af.tar.bz2
New formula libupnp
The portable SDK for UPnP™ Devices (libupnp) provides developers with an API and open source code for building control points, devices, and bridges that are compliant with Version 1.0 of the Universal Plug and Play Device Architecture Specification and support several operating systems like Linux, *BSD, Solaris and others.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/libupnp.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/libupnp.rb b/Library/Formula/libupnp.rb
new file mode 100644
index 000000000..797992995
--- /dev/null
+++ b/Library/Formula/libupnp.rb
@@ -0,0 +1,12 @@
+require 'formula'
+
+class Libupnp < Formula
+ url 'http://downloads.sourceforge.net/project/pupnp/pupnp/LibUPnP%201.6.6/libupnp-1.6.6.tar.bz2'
+ homepage 'http://pupnp.sourceforge.net/'
+ md5 '8918dcf7428cd119d0c8275765ff2833'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end