homebrew-core/Formula/aspectj.rb
ilovezfs 73135b381a
aspectj 1.8.13 (#20774)
require Java 8 specifically
2017-11-19 05:44:49 -08:00

43 lines
1.4 KiB
Ruby

class Aspectj < Formula
desc "Aspect-oriented programming for Java"
homepage "https://eclipse.org/aspectj/"
url "https://www.eclipse.org/downloads/download.php?r=1&file=/tools/aspectj/aspectj-1.8.13.jar"
sha256 "be150d5a67fefc63b055e799e4bd394a2e9864a88a4f12a2bdbc1c7ec3782e83"
bottle :unneeded
depends_on :java => "1.8"
def install
mkdir_p "#{libexec}/#{name}"
system "java", "-jar", "aspectj-#{version}.jar", "-to", "#{libexec}/#{name}"
bin.install Dir["#{libexec}/#{name}/bin/*"]
bin.env_script_all_files(libexec/"#{name}/bin", Language::Java.java_home_env("1.8"))
chmod 0555, Dir["#{libexec}/#{name}/bin/*"] # avoid 0777
end
test do
(testpath/"Test.java").write <<~EOS
public class Test {
public static void main (String[] args) {
System.out.println("Brew Test");
}
}
EOS
(testpath/"TestAspect.aj").write <<~EOS
public aspect TestAspect {
private pointcut mainMethod () :
execution(public static void main(String[]));
before () : mainMethod() {
System.out.print("Aspect ");
}
}
EOS
ENV["CLASSPATH"] = "#{libexec}/#{name}/lib/aspectjrt.jar:test.jar:testaspect.jar"
system bin/"ajc", "-outjar", "test.jar", "Test.java"
system bin/"ajc", "-outjar", "testaspect.jar", "-outxml", "TestAspect.aj"
output = shell_output("#{bin}/aj Test")
assert_match /Aspect Brew Test/, output
end
end