41 lines
1.3 KiB
Ruby
41 lines
1.3 KiB
Ruby
class Asimov < Formula
|
|
desc "Automatically exclude development dependencies from Time Machine backups"
|
|
homepage "https://github.com/stevegrunwell/asimov"
|
|
url "https://github.com/stevegrunwell/asimov/archive/v0.3.0.tar.gz"
|
|
sha256 "77a0ef09c86d9d6ff146547902c749c43bc054f331a12ecb9992db9673469fab"
|
|
license "MIT"
|
|
head "https://github.com/stevegrunwell/asimov.git", branch: "develop"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
bin.install buildpath/"asimov"
|
|
end
|
|
|
|
plist_options startup: true, manual: "asimov"
|
|
|
|
# Asimov will run in the background on a daily basis
|
|
def plist
|
|
<<~EOS
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>Program</key>
|
|
<string>#{opt_bin}/asimov</string>
|
|
<key>StartInterval</key>
|
|
<!-- 24 hours = 60 * 60 * 24 -->
|
|
<integer>86400</integer>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
assert_match "Finding dependency directories with corresponding definition files…",
|
|
shell_output("#{bin}/asimov")
|
|
end
|
|
end
|