homebrew-core/Formula/dnsmasq.rb
Max Howell 61b2307139 s/require 'brewkit'/require 'formula'/g
brewkit.rb changes ENV destructively, so lets not do that everytime a formula
is required. Now it's possible for other tools to require a formula
description without worrying about side-effects.
2009-10-15 16:48:03 +01:00

12 lines
300 B
Ruby

require 'formula'
class Dnsmasq <Formula
@url='http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.50.tar.gz'
@homepage='http://www.thekelleys.org.uk/dnsmasq/doc.html'
@md5='f7b1e17c590e493039537434c57c9de7'
def install
ENV.deparallelize
system "make install PREFIX=#{prefix}"
end
end