aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/couchdb-lucene.rb
blob: edf548dfa300e910a52d4636ffba34cd25176e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
require 'formula'

class CouchdbLucene < Formula
  url 'https://github.com/rnewson/couchdb-lucene/tarball/v0.8.0'
  homepage 'https://github.com/rnewson/couchdb-lucene'
  sha1 '63c835499bed8fc3213ca5eaac59f362f42f21c6'

  depends_on 'couchdb'
  depends_on 'maven'

  def install
    system "mvn"

    system "tar", "-xzf", "target/couchdb-lucene-#{version}-dist.tar.gz"
    prefix.install Dir["couchdb-lucene-#{version}/*"]

    (etc + "couchdb/local.d/couchdb-lucene.ini").write ini_file
  end

  def ini_file; <<-EOS.undent
    [couchdb]
    os_process_timeout=60000 ; increase the timeout from 5 seconds.

    [external]
    fti=#{which 'python'} #{prefix}/tools/couchdb-external-hook.py

    [httpd_db_handlers]
    _fti = {couch_httpd_external, handle_external_req, <<"fti">>}
    EOS
  end

  plist_options :manual => "#{HOMEBREW_PREFIX}/opt/couchdb-lucene/bin/run"

  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>Label</key>
        <string>#{plist_name}</string>
        <key>EnvironmentVariables</key>
        <dict>
          <key>HOME</key>
          <string>~</string>
          <key>DYLD_LIBRARY_PATH</key>
          <string>/opt/local/lib:$DYLD_LIBRARY_PATH</string>
        </dict>
        <key>ProgramArguments</key>
        <array>
          <string>#{opt_prefix}/bin/run</string>
        </array>
        <key>UserName</key>
        <string>#{`whoami`.chomp}</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>RunAtLoad</key>
        <true/>
        <key>KeepAlive</key>
        <true/>
      </dict>
    </plist>
    EOS
  end
end