homebrew-core/Formula/offline-imap.rb
Jiajun Wang 98b9bf8063 offline-imap 6.6.0
Closes Homebrew/homebrew#46862.

Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
2015-12-10 14:05:36 +00:00

56 lines
1.7 KiB
Ruby

class OfflineImap < Formula
desc "Synchronizes emails between two repositories"
homepage "http://offlineimap.org/"
url "https://github.com/OfflineIMAP/offlineimap/archive/v6.6.0.tar.gz"
sha256 "c41258e5ce531915bb891d4ce10b3af88b6d74a6ee69b6282957f85165ff63f4"
head "https://github.com/OfflineIMAP/offlineimap.git"
bottle :unneeded
def install
etc.install "offlineimap.conf", "offlineimap.conf.minimal"
libexec.install "bin/offlineimap" => "offlineimap.py"
libexec.install "offlineimap"
bin.install_symlink libexec+"offlineimap.py" => "offlineimap"
end
def caveats; <<-EOS.undent
To get started, copy one of these configurations to ~/.offlineimaprc:
* minimal configuration:
cp -n #{etc}/offlineimap.conf.minimal ~/.offlineimaprc
* advanced configuration:
cp -n #{etc}/offlineimap.conf ~/.offlineimaprc
EOS
end
test do
system bin/"offlineimap", "--version"
end
def plist; <<-EOS.undent
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>KeepAlive</key>
<false/>
<key>Label</key>
<string>#{plist_name}</string>
<key>ProgramArguments</key>
<array>
<string>#{opt_bin}/offlineimap</string>
</array>
<key>StartInterval</key>
<integer>300</integer>
<key>RunAtLoad</key>
<true />
<key>StandardErrorPath</key>
<string>/dev/null</string>
<key>StandardOutPath</key>
<string>/dev/null</string>
</dict>
</plist>
EOS
end
end