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

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

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