homebrew-core/Formula/wakeonlan.rb

19 lines
545 B
Ruby
Raw Normal View History

2009-11-26 19:17:35 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Wakeonlan < Formula
2009-11-26 19:17:35 +00:00
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
2009-11-26 19:17:35 +00:00
system "make"
system "make install"
end
end