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

class Wol < Formula
  head 'https://github.com/kylef/wol.git'
  homepage 'http://kylefuller.co.uk/'

  def install
    system "make"
    bin.install "bin/wol"
  end
end