aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/wakeonlan.rb
blob: 699ead8b8a0f28272a23e4e3d8ed0512c97b9f48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require 'formula'

class Wakeonlan < Formula
  url 'http://gsd.di.uminho.pt/jpo/software/wakeonlan/downloads/wakeonlan-0.41.tar.gz'
  homepage 'http://gsd.di.uminho.pt/jpo/software/wakeonlan/'
  md5 'd3143c5fe92d16196ac853b55dd421b5'

  def install
    system "perl", "Makefile.PL"
    # Make sure script and manual get installed in Cellar properly
    inreplace "Makefile" do |s|
      s.change_make_var! "INSTALLSITESCRIPT", bin
      s.change_make_var! "INSTALLSITEMAN1DIR", man1
    end
    system "make"
    system "make install"
  end
end