25 lines
778 B
Ruby
25 lines
778 B
Ruby
class DarkMode < Formula
|
|
desc "Control the macOS dark mode from the command-line"
|
|
homepage "https://github.com/sindresorhus/dark-mode"
|
|
url "https://github.com/sindresorhus/dark-mode/archive/2.0.1.tar.gz"
|
|
sha256 "edea2a21e550194204bc54fe7f68d32dcc517138ac3b12cb17855e61c3260c68"
|
|
head "https://github.com/sindresorhus/dark-mode.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "ffc564c30ebfa6b2f90600524beacaf3741147407a9c8167c0f5c7b324e05036" => :sierra
|
|
sha256 "7557075bff978e306c392f81e713d987147ef8433da753656c8569de17611879" => :el_capitan
|
|
end
|
|
|
|
depends_on :macos => :el_capitan
|
|
depends_on :xcode => :build
|
|
|
|
def install
|
|
system "./build"
|
|
bin.install "bin/dark-mode"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/dark-mode", "--version"
|
|
end
|
|
end
|