aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libnatpmp.rb
blob: 5184eeeb241cca6e73a54294707cf8b570e35825 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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'

  bottle do
    cellar :any
    sha1 "e6d42daee6bdd2d0854a2402cde606a880c54bbf" => :mavericks
    sha1 "380a32ba2f2b7383784693a4fc41968e94aa2356" => :mountain_lion
    sha1 "b106068d2535580dc36de4943aef2ed48014c2e9" => :lion
  end

  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