62 lines
1.7 KiB
Ruby
62 lines
1.7 KiB
Ruby
require 'formula'
|
|
|
|
class PureFtpd < Formula
|
|
homepage 'http://www.pureftpd.org/'
|
|
url 'http://download.pureftpd.org/pub/pure-ftpd/releases/pure-ftpd-1.0.35.tar.gz'
|
|
sha1 'fed26bb1f36d71819a08873d94bbda52522ff96a'
|
|
|
|
def install
|
|
args = ["--disable-dependency-tracking",
|
|
"--prefix=#{prefix}",
|
|
"--mandir=#{man}",
|
|
"--sysconfdir=#{etc}",
|
|
"--with-pam",
|
|
"--with-altlog",
|
|
"--with-puredb",
|
|
"--with-throttling",
|
|
"--with-ratios",
|
|
"--with-quotas",
|
|
"--with-ftpwho",
|
|
"--with-virtualhosts",
|
|
"--with-virtualchroot",
|
|
"--with-diraliases",
|
|
"--with-peruserlimits",
|
|
"--with-tls",
|
|
"--with-bonjour"]
|
|
|
|
args << "--with-pgsql" if which 'pg_config'
|
|
args << "--with-mysql" if which 'mysql'
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
|
|
plist_options :manual => 'pure-ftpd'
|
|
|
|
def plist; <<-EOS.undent
|
|
<?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>KeepAlive</key>
|
|
<true/>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_prefix}/sbin/pure-ftpd</string>
|
|
<string>-A -j -z</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{var}</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/pure-ftpd.log</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/pure-ftpd.log</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
end
|