16 lines
534 B
Ruby
16 lines
534 B
Ruby
require 'formula'
|
|
|
|
# Versions newer than 1.6.6 cause problems compiling ushare
|
|
# If you update this formula, please "brew install -v ushare"
|
|
|
|
class Libupnp < Formula
|
|
homepage 'http://pupnp.sourceforge.net/'
|
|
url 'http://downloads.sourceforge.net/project/pupnp/pupnp/libUPnP%201.6.6/libupnp-1.6.6.tar.bz2'
|
|
sha1 '24c2c349cb52ed3d62121fbdae205c8d9dc0f5fa'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|