homebrew-core/Formula/couchdb.rb
2019-02-25 23:08:12 +01:00

114 lines
3.5 KiB
Ruby

class Couchdb < Formula
desc "Document database server"
homepage "https://couchdb.apache.org/"
url "https://www.apache.org/dyn/closer.cgi?path=/couchdb/source/1.7.2/apache-couchdb-1.7.2.tar.gz"
mirror "https://archive.apache.org/dist/couchdb/source/1.7.2/apache-couchdb-1.7.2.tar.gz"
sha256 "7b7c0db046ded544a587a8935d495610dd10f01a9cae3cd42cf88c5ae40bc431"
bottle do
sha256 "8868d7714bfdbee9c6e3b975e4d807a8a77312d020a4e9a7d93e890e4f0565e1" => :mojave
sha256 "cc974d6fcbc24dc639c48e4a4a2942016553a4f3a188241af835946b34328ea8" => :high_sierra
sha256 "f0f136585526e769370a82935cfb574392f6a25e2cf16dacf2c1cb2703c45e7f" => :sierra
end
head do
url "https://github.com/apache/couchdb.git"
depends_on "autoconf" => :build
depends_on "autoconf-archive" => :build
depends_on "automake" => :build
depends_on "help2man" => :build
depends_on "libtool" => :build
depends_on "pkg-config" => :build
end
depends_on "erlang@19"
depends_on "icu4c"
depends_on "spidermonkey"
# Allow overwriting old configuration with new symlinks.
link_overwrite "etc/couchdb/default.ini"
link_overwrite "etc/couchdb/local.ini"
link_overwrite "etc/logrotate.d/couchdb"
def install
# CouchDB >=1.3.0 supports vendor names and versioning
# in the welcome message
inreplace "etc/couchdb/default.ini.tpl.in" do |s|
s.gsub! "%package_author_name%", "Homebrew"
s.gsub! "%version%", pkg_version
end
unless build.stable?
# workaround for the auto-generation of THANKS file which assumes
# a developer build environment incl access to git sha
touch "THANKS"
system "./bootstrap"
end
system "./configure", "--prefix=#{prefix}",
"--localstatedir=#{var}",
"--sysconfdir=#{prefix}/etc",
"--disable-init",
"--with-erlang=#{Formula["erlang@19"].opt_lib}/erlang/usr/include",
"--with-js-include=#{HOMEBREW_PREFIX}/include/js",
"--with-js-lib=#{HOMEBREW_PREFIX}/lib"
system "make"
system "make", "install"
# Use our plist instead to avoid faffing with a new system user.
(prefix/"Library/LaunchDaemons/org.apache.couchdb.plist").delete
(lib/"couchdb/bin/couchjs").chmod 0755
end
def post_install
(var/"lib/couchdb").mkpath
(var/"log/couchdb").mkpath
(var/"run/couchdb").mkpath
end
plist_options :manual => "couchdb"
def plist; <<~EOS
<?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_bin}/couchdb</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
EOS
end
test do
# ensure couchdb embedded spidermonkey vm works
system "#{bin}/couchjs", "-h"
(testpath/"var/lib/couchdb").mkpath
(testpath/"var/log/couchdb").mkpath
(testpath/"var/run/couchdb").mkpath
cp_r prefix/"etc/couchdb", testpath
inreplace "#{testpath}/couchdb/default.ini", "/usr/local/var", testpath/"var"
pid = fork do
exec "#{bin}/couchdb -A #{testpath}/couchdb"
end
sleep 2
begin
assert_match "Homebrew", shell_output("curl -# localhost:5984")
ensure
Process.kill("SIGINT", pid)
Process.wait(pid)
end
end
end