aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pwnat.rb
blob: 744fa956f13bc94accf7b6da7b0fbb931fbcf778 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Pwnat < Formula
  homepage 'http://samy.pl/pwnat/'
  url 'http://samy.pl/pwnat/pwnat-0.3-beta.tgz'
  sha1 '6faaeef76a2b62635def8fdef06fce0dfa3e870e'

  def install
    system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}", "LDFLAGS=-lz"
    bin.install "pwnat"
  end
end