78e5a42ca6
The current wakeonlan formula causes the script and man page to get installed directly into /usr/local instead of into the Cellar like it should, this patch fixes that. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
18 lines
544 B
Ruby
18 lines
544 B
Ruby
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
|