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

class Dnsmap < Formula
  url 'http://dnsmap.googlecode.com/files/dnsmap-0.30.tar.gz'
  homepage 'http://code.google.com/p/dnsmap/'
  sha1 'a9a8a17102825510d16c1f8af33ca74407c18c70'

  def install
    system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}", "BINDIR=#{bin}", "install"
  end
end