ce1944e02c
Closes Homebrew/homebrew#22606. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
14 lines
501 B
Ruby
14 lines
501 B
Ruby
require 'formula'
|
|
|
|
class Libnatpmp < Formula
|
|
homepage 'http://miniupnp.free.fr/libnatpmp.html'
|
|
url 'http://miniupnp.free.fr/files/download.php?file=libnatpmp-20130911.tar.gz'
|
|
sha1 'f2ec1ed22ae9f07b2cacf702d291858f13ae8781'
|
|
|
|
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
|