homebrew-core/Formula/wol.rb
Kyle Fuller 8918e0d5b9 New formula for wol a wake on lan application.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-01-31 10:42:51 -08:00

11 lines
185 B
Ruby

require 'formula'
class Wol <Formula
head 'git://github.com/kylef/wol.git'
homepage 'http://kylefuller.co.uk/'
def install
system "make"
bin.install "bin/wol"
end
end