aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libnatpmp.rb
blob: 534f94c154099ee0e3cf285d627740591c7a2ef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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