blob: 15218376a2f0dff6522f25d8d5aabdfcc453b410 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|