8e703ce56c
the latest edition of kettle. Closes #6112. Signed-off-by: Andrew Janke <andrew@apjanke.net>
63 lines
2 KiB
Ruby
63 lines
2 KiB
Ruby
class Kettle < Formula
|
|
desc "Pentaho Data Integration software"
|
|
homepage "http://community.pentaho.com/projects/data-integration/"
|
|
url "https://downloads.sourceforge.net/project/pentaho/Data%20Integration/6.1/pdi-ce-6.1.0.1-196.zip"
|
|
sha256 "ef5076c09e8481d1ab4cfc5f7d4701437f80f2b97a3bf19dfa74821de9524495"
|
|
|
|
bottle :unneeded
|
|
|
|
def install
|
|
rm_rf Dir["*.{bat}"]
|
|
libexec.install Dir["*"]
|
|
|
|
(etc+"kettle").install libexec+"pwd/carte-config-master-8080.xml" => "carte-config.xml"
|
|
(etc+"kettle/.kettle").install libexec+"pwd/kettle.pwd"
|
|
(etc+"kettle/simple-jndi").mkpath
|
|
|
|
(var+"log/kettle").mkpath
|
|
|
|
# We don't assume that carte, kitchen or pan are in anyway unique command names so we'll prepend "pdi"
|
|
%w[carte kitchen pan].each do |command|
|
|
(bin+"pdi#{command}").write_env_script libexec+"#{command}.sh", :BASEDIR => libexec
|
|
end
|
|
end
|
|
|
|
plist_options :manual => "kettle"
|
|
|
|
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>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/pdicarte</string>
|
|
<string>#{etc}/kettle/carte-config.xml</string>
|
|
</array>
|
|
<key>EnvironmentVariables</key>
|
|
<dict>
|
|
<key>KETTLE_HOME</key>
|
|
<string>#{etc}/kettle</string>
|
|
</dict>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{etc}/kettle</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/kettle/carte.log</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/kettle/carte.log</string>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
ENV.java_cache
|
|
|
|
system "#{bin}/pdipan", "-file=#{libexec}/samples/transformations/Encrypt\ Password.ktr", "-level=RowLevel"
|
|
end
|
|
end
|