50 lines
1.6 KiB
Ruby
50 lines
1.6 KiB
Ruby
class Aspectj < Formula
|
|
desc "Aspect-oriented programming for Java"
|
|
homepage "https://www.eclipse.org/aspectj/"
|
|
url "https://www.eclipse.org/downloads/download.php?r=1&file=/tools/aspectj/aspectj-1.9.6.jar"
|
|
sha256 "afec62c03fe154adeecf9cd599ce033fff258d1d373a82511e5df54f79ab03e2"
|
|
revision 1
|
|
|
|
livecheck do
|
|
url "https://www.eclipse.org/aspectj/downloads.php"
|
|
regex(%r{Latest Stable Release.*?href=.*?/aspectj[._-]v?(\d+(?:\.\d+)+)\.jar}im)
|
|
end
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on "openjdk"
|
|
|
|
def install
|
|
mkdir_p "#{libexec}/#{name}"
|
|
system "#{Formula["openjdk"].bin}/java", "-jar", "aspectj-#{version}.jar", "-to", "#{libexec}/#{name}"
|
|
bin.install Dir["#{libexec}/#{name}/bin/*"]
|
|
bin.env_script_all_files libexec/"#{name}/bin", Language::Java.overridable_java_home_env
|
|
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
|