2011-07-15 17:24:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Miniupnpc < Formula
|
|
|
|
homepage 'http://miniupnp.free.fr'
|
2012-10-21 13:40:51 +00:00
|
|
|
url 'http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.7.20120830.tar.gz'
|
|
|
|
sha1 '20ec14d0abb4b9c47b0a3afc37f9f6a374c0b767'
|
2011-07-15 17:24:26 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-08 08:08:40 +00:00
|
|
|
# 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"
|
2011-07-15 17:24:26 +00:00
|
|
|
end
|
|
|
|
end
|