939190abe5
Closes Homebrew/homebrew#24413.
33 lines
903 B
Ruby
33 lines
903 B
Ruby
require 'formula'
|
|
|
|
class Avian < Formula
|
|
homepage 'http://oss.readytalk.com/avian/'
|
|
head 'https://github.com/ReadyTalk/avian.git'
|
|
url 'https://github.com/ReadyTalk/avian/archive/v0.7.1.tar.gz'
|
|
sha1 '7465b27f11de9b85f4d750e8f4f57a9b3477b87d'
|
|
|
|
depends_on :macos => :lion
|
|
|
|
# Fix build with clang; already upstream
|
|
def patches
|
|
"https://github.com/ReadyTalk/avian/commit/69ea1f57219e0ec1b113f1fcadaa3dae6b93f358.diff"
|
|
end
|
|
|
|
def install
|
|
system 'make', 'JAVA_HOME=/Library/Java/Home'
|
|
bin.install Dir['build/darwin-*/avian*']
|
|
lib.install Dir['build/darwin-*/*.dylib'] + Dir['build/darwin-*/*.a']
|
|
end
|
|
|
|
test do
|
|
(testpath/'Test.java').write <<-EOS.undent
|
|
public class Test {
|
|
public static void main(String arg[]) {
|
|
System.out.print("OK");
|
|
}
|
|
}
|
|
EOS
|
|
system 'javac', 'Test.java'
|
|
assert_equal 'OK', `avian Test`.strip
|
|
end
|
|
end
|