homebrew-core/Formula/libupnp.rb
Edward George 3bfaa9def9 libupnp: reverted to v1.6.6 due to api changes.
api changes in 1.6.8 are incompatible with those projects
based off earlier versions, such as uShare.

Have reverted to 1.6.6 and fixed the download url.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

I had bumped the version in the first place because I thought the download
was gone, but they had just changed the casing in the URL. Reverting
to this version until someone who uses this software says it is OK
to bump back up.

 - adamv
2010-11-05 08:58:46 -07:00

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