homebrew-core/Formula/wol.rb

12 lines
188 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Wol < Formula
2011-05-27 05:02:55 +00:00
head 'https://github.com/kylef/wol.git'
homepage 'http://kylefuller.co.uk/'
def install
system "make"
bin.install "bin/wol"
end
end