91 lines
3 KiB
Ruby
91 lines
3 KiB
Ruby
class Offlineimap < Formula
|
|
desc "Synchronizes emails between two repositories"
|
|
homepage "https://www.offlineimap.org/"
|
|
url "https://github.com/OfflineIMAP/offlineimap/archive/v7.2.1.tar.gz"
|
|
sha256 "1d4164941413234cf4669ae57d27176701a7e07214fe49fa265df5c085eb4280"
|
|
head "https://github.com/OfflineIMAP/offlineimap.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "7156fab97be5a48067ca0c0ff713bc283fc0f1542f00842ed214d2cdbd54d7d3" => :high_sierra
|
|
sha256 "7156fab97be5a48067ca0c0ff713bc283fc0f1542f00842ed214d2cdbd54d7d3" => :sierra
|
|
sha256 "7156fab97be5a48067ca0c0ff713bc283fc0f1542f00842ed214d2cdbd54d7d3" => :el_capitan
|
|
end
|
|
|
|
depends_on "asciidoc" => :build
|
|
depends_on "docbook-xsl" => :build
|
|
depends_on "sphinx-doc" => :build
|
|
depends_on "python@2"
|
|
|
|
resource "six" do
|
|
url "https://files.pythonhosted.org/packages/16/d8/bc6316cf98419719bd59c91742194c111b6f2e85abac88e496adefaf7afe/six-1.11.0.tar.gz"
|
|
sha256 "70e8a77beed4562e7f14fe23a786b54f6296e34344c23bc42f07b15018ff98e9"
|
|
end
|
|
|
|
def install
|
|
ENV["XML_CATALOG_FILES"] = "#{etc}/xml/catalog"
|
|
system "make", "docs"
|
|
man1.install "docs/offlineimap.1"
|
|
man7.install "docs/offlineimapui.7"
|
|
|
|
ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python2.7/site-packages"
|
|
resource("six").stage do
|
|
system "python", *Language::Python.setup_install_args(libexec/"vendor")
|
|
end
|
|
etc.install "offlineimap.conf", "offlineimap.conf.minimal"
|
|
libexec.install "bin/offlineimap" => "offlineimap.py"
|
|
libexec.install "offlineimap"
|
|
(bin/"offlineimap").write_env_script(libexec/"offlineimap.py",
|
|
:PYTHONPATH => ENV["PYTHONPATH"])
|
|
end
|
|
|
|
def caveats; <<~EOS
|
|
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
|
|
|
|
plist_options :manual => "offlineimap"
|
|
|
|
def plist; <<~EOS
|
|
<?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>EnvironmentVariables</key>
|
|
<dict>
|
|
<key>PATH</key>
|
|
<string>/usr/bin:/bin:/usr/sbin:/sbin:#{HOMEBREW_PREFIX}/bin</string>
|
|
</dict>
|
|
<key>KeepAlive</key>
|
|
<false/>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/offlineimap</string>
|
|
<string>-q</string>
|
|
<string>-u</string>
|
|
<string>basic</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
|
|
|
|
test do
|
|
system bin/"offlineimap", "--version"
|
|
end
|
|
end
|