606b43d499
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.
12 lines
376 B
Ruby
12 lines
376 B
Ruby
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
|