11 lines
188 B
Ruby
11 lines
188 B
Ruby
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
|