homebrew-core/Formula/nuxeo.rb

62 lines
2.0 KiB
Ruby

class Nuxeo < Formula
desc "Enterprise Content Management"
homepage "https://nuxeo.github.io/"
url "https://cdn.nuxeo.com/nuxeo-10.1/nuxeo-server-10.1-tomcat.zip"
sha256 "27d96f56ed515348e776cd35cd5a49de5209a4b5e2c847c717f05c20b8d69159"
bottle :unneeded
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
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