homebrew-core/Formula/dovecot.rb

45 lines
1.3 KiB
Ruby
Raw Normal View History

require 'formula'
class Dovecot <Formula
2010-03-09 17:36:57 +00:00
url 'http://www.dovecot.org/releases/1.2/dovecot-1.2.11.tar.gz'
homepage 'http://dovecot.org/'
md5 'bdac013fd57aa616ea4bdd9ac34557c6'
def install
2010-05-27 04:03:39 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--sysconfdir=#{etc}",
"--localstatedir=#{var}",
"--with-ssl=openssl"
system "make install"
end
def caveats; <<-EOS
For Dovecot to work, you will need to do the following:
2010-05-27 04:03:39 +00:00
1) Create configuration in #{etc}
2) If required by the configuration above, create a dovecot user and group
3) possibly create a launchd item in /Library/LaunchDaemons/org.dovecot.plist, like so:
<?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>Label</key>
<string>org.dovecot</string>
<key>ProgramArguments</key>
<array>
2010-05-27 04:03:39 +00:00
<string>#{sbin}/dovecot</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
2009-09-01 00:48:24 +00:00
4) start the server using: sudo launchctl load /Library/LaunchDaemons/org.dovecot.plist
EOS
end
end