-
Notifications
You must be signed in to change notification settings - Fork 0
/
wallpapertimer.rb
25 lines (23 loc) · 1.04 KB
/
wallpapertimer.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class Wallpapertimer < Formula
desc "Automatically set groups of wallpapers to multiple screens"
homepage "https://github.com/Lutzifer/wallpaperTimer"
url "https://github.com/Lutzifer/wallpaperTimer/archive/0.9.0.tar.gz"
version "0.9.0"
sha256 "190c3e4025b14b85313a7ced57cf632e25f35bebc07c258cfd0dc9329ab68e42"
def install
system("xcodebuild -target wallpaperTimer -configuration Release")
bin.install("build/release/wallpaperTimer")
end
test do
# `test do` will create, run in and delete a temporary directory.
#
# This test will fail and we won't accept that! It's enough to just replace
# "false" with the main program this formula installs, but it'd be nice if you
# were more thorough. Run the test with `brew test downloadSorter`. Options passed
# to `brew install` such as `--HEAD` also need to be provided to `brew test`.
#
# The installed folder is not in the path, so use the entire path to any
# executables being tested: `system "#{bin}/program", "do", "something"`.
system "false"
end
end