2013-11-17 10:12:20 +00:00
|
|
|
class ApacheForrest < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Publishing framework providing multiple output formats"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://forrest.apache.org/"
|
|
|
|
url "https://www.apache.org/dyn/closer.cgi?path=forrest/apache-forrest-0.9-sources.tar.gz"
|
|
|
|
sha256 "c6ac758db2eb0d4d91bd1733bbbc2dec4fdb33603895c464bcb47a34490fb64d"
|
2013-11-17 10:12:20 +00:00
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
resource "deps" do
|
|
|
|
url "https://www.apache.org/dyn/closer.cgi?path=forrest/apache-forrest-0.9-dependencies.tar.gz"
|
|
|
|
sha256 "33146b4e64933691d3b779421b35da08062a704618518d561281d3b43917ccf1"
|
2013-11-17 10:12:20 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def install
|
2015-08-03 12:55:31 +00:00
|
|
|
libexec.install Dir["*"]
|
2013-11-17 10:12:20 +00:00
|
|
|
bin.install_symlink "#{libexec}/bin/forrest"
|
|
|
|
|
2015-08-03 12:55:31 +00:00
|
|
|
resource("deps").stage do
|
2013-11-28 10:00:33 +00:00
|
|
|
# To avoid conflicts with directory names already installed from the
|
|
|
|
# main tarball, surgically install contents of dependency tarball
|
|
|
|
deps_to_install = [
|
|
|
|
"lib",
|
|
|
|
"main/webapp/resources/schema/relaxng",
|
|
|
|
"main/webapp/resources/stylesheets",
|
|
|
|
"plugins/org.apache.forrest.plugin.output.pdf/",
|
|
|
|
"tools/ant",
|
|
|
|
"tools/forrestbot/lib",
|
|
|
|
"tools/forrestbot/webapp/lib",
|
|
|
|
"tools/jetty"
|
|
|
|
]
|
|
|
|
deps_to_install.each do |dep|
|
|
|
|
(libexec+dep).install Dir["#{dep}/*"]
|
|
|
|
end
|
2013-11-17 10:12:20 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/forrest", "-projecthelp"
|
|
|
|
end
|
|
|
|
end
|