homebrew-core/Formula/zzz.rb
Baptiste Fontaine c93b57234c zzz 1 (imported from head-only)
Closes Homebrew/homebrew#46076.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
2015-11-18 00:08:50 +01:00

20 lines
514 B
Ruby

class Zzz < Formula
desc "Command-line tool to put Macs to sleep"
homepage "https://github.com/Orc/Zzz"
url "https://github.com/Orc/Zzz/archive/v1.tar.gz"
sha256 "8c8958b65a74ab1081ce1a950af6d360166828bdb383d71cc8fe37ddb1702576"
head "https://github.com/Orc/Zzz.git"
bottle :unneeded
# No test is possible: this has no --help or --version, it just
# sleeps the Mac instantly.
def install
system "make", "install", "PREFIX=#{prefix}"
end
test do
File.exist? "#{bin}/Zzz"
end
end