2011-07-15 17:24:26 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Miniupnpc < Formula
|
|
|
|
homepage 'http://miniupnp.free.fr'
|
2012-02-08 08:08:40 +00:00
|
|
|
url 'http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.6.20120125.tar.gz'
|
2011-07-15 17:24:26 +00:00
|
|
|
md5 '61f136f1302add9d89d329a6c1e338ca'
|
|
|
|
|
|
|
|
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
|