aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wakeonlan.rb
blob: 97f07d5c8ec8d7577af13376bcbedc5df4d6f7fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require "formula"

class Wakeonlan < Formula
  homepage "https://github.com/jpoliv/wakeonlan"
  url "https://github.com/jpoliv/wakeonlan/archive/wakeonlan-0.41.tar.gz"
  sha1 "5937a27e818f4765e3bc8fd6742375240a90d5d1"

  def install
    system "perl", "Makefile.PL"
    system "make"
    bin.install "blib/script/wakeonlan"
    man1.install "blib/man1/wakeonlan.1"
  end
end