Skip to content

Instantly share code, notes, and snippets.

@ryanramage
Forked from dch/README.md
Last active December 14, 2015 20:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanramage/5146915 to your computer and use it in GitHub Desktop.
Save ryanramage/5146915 to your computer and use it in GitHub Desktop.
require 'formula'
class Couchdb < Formula
homepage "http://couchdb.apache.org/"
url 'http://www.apache.org/dyn/closer.cgi?path=/couchdb/1.2.1/apache-couchdb-1.2.1.tar.gz'
sha1 '70dac0304cdc9f4313f524db583170a2c59e265c'
head 'https://git-wip-us.apache.org/repos/asf/couchdb.git'
devel do
url 'https://git-wip-us.apache.org/repos/asf/couchdb.git', :branch => '1.3.x'
version '1.3.x'
end
depends_on 'autoconf'
depends_on 'autoconf-archive'
depends_on 'pkg-config'
depends_on 'automake'
depends_on 'help2man' => :build
depends_on 'spidermonkey'
depends_on 'icu4c'
depends_on 'erlang'
depends_on 'curl' if MacOS.version == :leopard
def install
# workaround for the auto-generation of THANKS file which assumes
# a developer build environment incl access to git
system "touch THANKS"
system "./bootstrap" if File.exists? "bootstrap"
# see if we can get this to work without needing to hard link icu4c library
ENV.append 'LDFLAGS', "-L#{HOMEBREW_PREFIX}/lib"
system "./configure", "--prefix=#{prefix}",
"--localstatedir=#{var}",
"--sysconfdir=#{etc}",
"--with-erlang=#{HOMEBREW_PREFIX}/lib/erlang/usr/include",
"--with-js-include=#{HOMEBREW_PREFIX}/include/js",
"--with-js-lib=#{HOMEBREW_PREFIX}/lib"
system "make"
system "make install"
(prefix+"Library/LaunchDaemons/org.apache.couchdb.plist").chmod 0644
(lib+'couchdb/bin/couchjs').chmod 0755
(var+'lib/couchdb').mkpath
(var+'log/couchdb').mkpath
end
def test
puts <<-EOS.undent
To test CouchDB, start `couchdb` in a terminal and then:
curl http://127.0.0.1:5984/
The reply should look like:
{"couchdb":"Welcome","version":"1.2.1"}
EOS
end
def caveats; <<-EOS.undent
If this is your first install, automatically load on login with:
mkdir -p ~/Library/LaunchAgents
cp #{prefix}/Library/LaunchDaemons/org.apache.couchdb.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/org.apache.couchdb.plist
If this is an upgrade and you already have the org.apache.couchdb.plist loaded:
launchctl unload -w ~/Library/LaunchAgents/org.apache.couchdb.plist
cp #{prefix}/Library/LaunchDaemons/org.apache.couchdb.plist ~/Library/LaunchAgents/
launchctl load -w ~/Library/LaunchAgents/org.apache.couchdb.plist
Alternatively, automatically run on startup as a daemon with:
sudo launchctl list org.apache.couchdb \>/dev/null 2\>\&1 \&\& \\
sudo launchctl unload -w /Library/LaunchDaemons/org.apache.couchdb.plist
sudo cp #{prefix}/Library/LaunchDaemons/org.apache.couchdb.plist /Library/LaunchDaemons/
sudo launchctl load -w /Library/LaunchDaemons/org.apache.couchdb.plist
Or start manually as the current user with:
couchdb
EOS
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment