8d9f4aab6d
Closes Homebrew/homebrew#24047. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
503 B
Ruby
14 lines
503 B
Ruby
require 'formula'
|
|
|
|
class Miniupnpc < Formula
|
|
homepage 'http://miniupnp.tuxfamilty.org'
|
|
url 'http://miniupnp.tuxfamily.org/files/download.php?file=miniupnpc-1.8.20131007.tar.gz'
|
|
sha1 'e2881e9583e90d6706abe0663330f46579efc64a'
|
|
|
|
def install
|
|
# Reported upstream:
|
|
# http://miniupnp.tuxfamily.org/forum/viewtopic.php?t=978
|
|
inreplace 'Makefile', "-Wl,-install_name,$(SONAME)", "-Wl,-install_name,$(INSTALLDIRLIB)/$(SONAME)"
|
|
system "make", "INSTALLPREFIX=#{prefix}", "install"
|
|
end
|
|
end
|