75 lines
2.7 KiB
Ruby
75 lines
2.7 KiB
Ruby
class Hashlink < Formula
|
|
desc "Virtual machine for Haxe"
|
|
homepage "https://hashlink.haxe.org/"
|
|
url "https://github.com/HaxeFoundation/hashlink/archive/1.11.tar.gz"
|
|
sha256 "b087ded7b93c7077f5b093b999f279a37aa1e31df829d882fa965389b5ad1aea"
|
|
license "MIT"
|
|
revision 1
|
|
head "https://github.com/HaxeFoundation/hashlink.git"
|
|
|
|
bottle do
|
|
sha256 "1c227ae285dbcc62a997a8a440e1d9b4050d2ec4a4620e5d92933553cab9e394" => :catalina
|
|
sha256 "46dd6be20bd51812ef4b616fdb0a33fa75b283887751b8d075ac42db3be3928b" => :mojave
|
|
sha256 "5f2623ecf5e734ea67092e79b7624476914e7c1febea452313a8e26d234f50ac" => :high_sierra
|
|
end
|
|
|
|
depends_on "haxe" => :test
|
|
depends_on "jpeg-turbo"
|
|
depends_on "libogg"
|
|
depends_on "libpng"
|
|
depends_on "libuv"
|
|
depends_on "libvorbis"
|
|
depends_on "mbedtls"
|
|
depends_on "openal-soft"
|
|
depends_on "sdl2"
|
|
|
|
def install
|
|
inreplace "Makefile", /\$\{LFLAGS\}/, "${LFLAGS} ${EXTRA_LFLAGS}" unless build.head?
|
|
system "make", "EXTRA_LFLAGS=-Wl,-rpath,#{libexec}/lib"
|
|
system "make", "install", "PREFIX=#{libexec}"
|
|
bin.install_symlink Dir[libexec/"bin/*"]
|
|
end
|
|
|
|
test do
|
|
haxebin = Formula["haxe"].bin
|
|
|
|
(testpath/"HelloWorld.hx").write <<~EOS
|
|
class HelloWorld {
|
|
static function main() Sys.println("Hello world!");
|
|
}
|
|
EOS
|
|
system "#{haxebin}/haxe", "-hl", "HelloWorld.hl", "-main", "HelloWorld"
|
|
assert_equal "Hello world!\n", shell_output("#{bin}/hl HelloWorld.hl")
|
|
|
|
(testpath/"TestHttps.hx").write <<~EOS
|
|
class TestHttps {
|
|
static function main() {
|
|
var http = new haxe.Http("https://www.google.com/");
|
|
http.onStatus = status -> Sys.println(status);
|
|
http.onError = error -> {
|
|
trace('error: $error');
|
|
Sys.exit(1);
|
|
}
|
|
http.request();
|
|
}
|
|
}
|
|
EOS
|
|
system "#{haxebin}/haxe", "-hl", "TestHttps.hl", "-main", "TestHttps"
|
|
assert_equal "200\n", shell_output("#{bin}/hl TestHttps.hl")
|
|
|
|
(testpath/"build").mkdir
|
|
system "#{haxebin}/haxelib", "newrepo"
|
|
system "#{haxebin}/haxelib", "install", "hashlink"
|
|
|
|
system "#{haxebin}/haxe", "-hl", "HelloWorld/main.c", "-main", "HelloWorld"
|
|
system ENV.cc, "-O3", "-std=c11", "-IHelloWorld", "-I#{libexec}/include", "-L#{libexec}/lib", "-lhl",
|
|
"HelloWorld/main.c", "-o", "build/HelloWorld"
|
|
assert_equal "Hello world!\n", `./build/HelloWorld`
|
|
|
|
system "#{haxebin}/haxe", "-hl", "TestHttps/main.c", "-main", "TestHttps"
|
|
system ENV.cc, "-O3", "-std=c11", "-ITestHttps", "-I#{libexec}/include", "-L#{libexec}/lib", "-lhl",
|
|
"TestHttps/main.c", "-o", "build/TestHttps", libexec/"lib/ssl.hdll"
|
|
assert_equal "200\n", `./build/TestHttps`
|
|
end
|
|
end
|