class Nuxeo < Formula desc "Enterprise Content Management" homepage "https://nuxeo.github.io/" url "https://cdn.nuxeo.com/nuxeo-8.1/nuxeo-cap-8.1-tomcat.zip" version "8.1" sha256 "d1fb98489e001caacf2aad5102ce0e5b135481263ba366b3ad773a289ea80aa9" bottle do cellar :any_skip_relocation sha256 "7bc87c735af9427fa47594123e83a8e8f8b94c4288c714c215df5a69d72be679" => :el_capitan sha256 "501a42d91f4b482e2f40ec7cf37a6e8bf97ec40fa8e32e8e820645bb311f8717" => :yosemite sha256 "32e038c7960f6aefb997bafc4367b878e13aaa6cff1d7a2a75fa8c6bde1d72a0" => :mavericks end depends_on "poppler" => :recommended depends_on "pdftohtml" => :optional depends_on "imagemagick" depends_on "ghostscript" depends_on "ufraw" depends_on "libwpd" depends_on "exiftool" depends_on "ffmpeg" => :optional def install libexec.install Dir["#{buildpath}/*"] (bin/"nuxeoctl").write_env_script "#{libexec}/bin/nuxeoctl", :NUXEO_HOME => libexec.to_s, :NUXEO_CONF => "#{etc}/nuxeo.conf" inreplace "#{libexec}/bin/nuxeo.conf" do |s| s.gsub! /#nuxeo\.log\.dir.*/, "nuxeo.log.dir=#{var}/log/nuxeo" s.gsub! /#nuxeo\.data\.dir.*/, "nuxeo.data.dir=#{var}/lib/nuxeo/data" s.gsub! /#nuxeo\.pid\.dir.*/, "nuxeo.pid.dir=#{var}/run/nuxeo" end etc.install "#{libexec}/bin/nuxeo.conf" end def post_install (var/"log/nuxeo").mkpath (var/"lib/nuxeo/data").mkpath (var/"run/nuxeo").mkpath (var/"cache/nuxeo/packages").mkpath libexec.install_symlink var/"cache/nuxeo/packages" end def caveats; <<-EOS.undent You need to edit #{etc}/nuxeo.conf file to configure manually the server. Also, in case of upgrade, run 'nuxeoctl mp-upgrade' to ensure all downloaded addons are up to date. EOS end test do # Copy configuration file to test path, due to some automatic writes on it. cp "#{etc}/nuxeo.conf", "#{testpath}/nuxeo.conf" inreplace "#{testpath}/nuxeo.conf" do |s| s.gsub! /#{var}/, testpath s.gsub! /#nuxeo\.tmp\.dir.*/, "nuxeo.tmp.dir=#{testpath}/tmp" end ENV["NUXEO_CONF"] = "#{testpath}/nuxeo.conf" assert_match %r{#{testpath}/nuxeo\.conf}, shell_output("#{libexec}/bin/nuxeoctl config -q --get nuxeo.conf") assert_match /#{libexec}/, shell_output("#{libexec}/bin/nuxeoctl config -q --get nuxeo.home") end end