homebrew-core/Formula/offlineimap.rb
Tomasz Pajor cacb84d8cb offlineimap: rename from offline-imap
Closes Homebrew/homebrew#47638.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2016-01-04 12:21:00 +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.1.tar.gz"
sha256 "af3fd47ba087180dc0e8d2b64cf358ce7f6fe49732d13b6fcce82853d0004bb0"
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