homebrew-core/Formula/cliclick.rb

24 lines
763 B
Ruby

class Cliclick < Formula
desc "Tool for emulating mouse and keyboard events"
homepage "https://www.bluem.net/jump/cliclick/"
url "https://github.com/BlueM/cliclick/archive/4.0.1.tar.gz"
sha256 "78f9584524b2cb4710a964f4d8e23667479f1dab37240d1ffbc8dfa9841ff1c2"
head "https://github.com/BlueM/cliclick.git"
bottle do
cellar :any_skip_relocation
sha256 "c371cb5b700e4a5f6495545b5f83e5414fc0e0cb98be05231a7abdf6c6607ff4" => :high_sierra
sha256 "bb47d1d8f4c81f31dc9372b5c06d3f74ecb25026805936f62e08744d1b888ecb" => :sierra
sha256 "e8eca6037032ad2b68b9e8c4faa40adb770b10f868448e47852571f1829aa462" => :el_capitan
end
def install
system "make"
bin.install "cliclick"
end
test do
system bin/"cliclick", "p:OK"
end
end