7a4dabfc1a
This restores 1.8 hash rockets because they look nicer with e.g. `depends_on :foo => :bar`
24 lines
835 B
Ruby
24 lines
835 B
Ruby
class Pig < Formula
|
|
desc "Platform for analyzing large data sets"
|
|
homepage "https://pig.apache.org/"
|
|
url "https://www.apache.org/dyn/closer.cgi?path=pig/pig-0.16.0/pig-0.16.0.tar.gz"
|
|
mirror "https://archive.apache.org/dist/pig/pig-0.16.0/pig-0.16.0.tar.gz"
|
|
sha256 "08947c3f381a1f810430c3703081277bd0b27ac3f76c5a52c096ea587e7ee95c"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on :java => "1.6+"
|
|
|
|
def install
|
|
(libexec/"bin").install "bin/pig"
|
|
libexec.install ["pig-#{version}-core-h1.jar", "pig-#{version}-core-h2.jar", "lib"]
|
|
(bin/"pig").write_env_script libexec/"bin/pig", Language::Java.java_home_env("1.6+").merge(:PIG_HOME => libexec)
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.pig").write <<-EOS.undent
|
|
sh echo "Hello World"
|
|
EOS
|
|
assert_match "Hello World", shell_output("#{bin}/pig -x local test.pig")
|
|
end
|
|
end
|