mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
99 lines
3.5 KiB
Tcl
99 lines
3.5 KiB
Tcl
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
PortSystem 1.0
|
|
|
|
set feature 24
|
|
name jdk${feature}-graalvm
|
|
categories java devel
|
|
maintainers {breun @breun} openmaintainer
|
|
platforms {darwin any}
|
|
# GraalVM Free Terms and Conditions: https://www.oracle.com/downloads/licenses/graal-free-license.html
|
|
# This port uses prebuilt binaries; 'NoMirror' makes sure MacPorts doesn't mirror/distribute these third-party binaries
|
|
license GFTC NoMirror
|
|
# This port uses prebuilt binaries for a particular architecture; they are not universal binaries
|
|
universal_variant no
|
|
|
|
# https://www.oracle.com/java/technologies/downloads/#graalvmjava24-mac
|
|
supported_archs x86_64 arm64
|
|
|
|
version ${feature}.0.2
|
|
set build 11
|
|
revision 0
|
|
|
|
master_sites https://download.oracle.com/graalvm/${feature}/archive/
|
|
|
|
homepage https://www.oracle.com/java/graalvm/
|
|
|
|
livecheck.type none
|
|
|
|
use_configure no
|
|
build {}
|
|
|
|
description Oracle GraalVM for JDK ${feature} (Short Term Support until September 2025)
|
|
long_description {*}${description} \
|
|
\n\nOracle GraalVM for JDK ${feature} compiles your Java applications \
|
|
ahead of time into standalone binaries that start instantly, provide peak \
|
|
performance with no warmup, and use fewer cloud resources.
|
|
|
|
if {${configure.build_arch} eq "x86_64"} {
|
|
distname graalvm-jdk-${version}_macos-x64_bin
|
|
checksums rmd160 2f7b523cb830111bd77cbcf400857ac89f561d3b \
|
|
sha256 df0f9e5d101201c50bfa6baa3c657a81a2883c5b5097a9f5ab93dab86f7e3ba2 \
|
|
size 344642438
|
|
} elseif {${configure.build_arch} eq "arm64"} {
|
|
distname graalvm-jdk-${version}_macos-aarch64_bin
|
|
checksums rmd160 70a9d0f45c08568f2ff7e9824797e299f337a055 \
|
|
sha256 2dc7634ed939c725d41a353f73443ff32e70f2fb577367f12a6936107e3494dc \
|
|
size 359008057
|
|
}
|
|
|
|
worksrcdir graalvm-jdk-${version}+${build}.1
|
|
|
|
variant Applets \
|
|
description { Advertise the JVM capability "Applets".} {}
|
|
|
|
variant BundledApp \
|
|
description { Advertise the JVM capability "BundledApp". This is required by some java-based app bundles to recognize and use the JVM.} {}
|
|
|
|
variant JNI \
|
|
description { Advertise the JVM capability "JNI". This is required by some java-based app bundles to recognize and use the JVM.} {}
|
|
|
|
variant WebStart \
|
|
description { Advertise the JVM capability "WebStart".} {}
|
|
|
|
patch {
|
|
foreach var { Applets BundledApp JNI WebStart } {
|
|
if {[variant_isset ${var}]} {
|
|
reinplace -E "s|^(\[\[:space:\]\]*<string>)CommandLine(</string>)|\\1${var}\\2\\\n\\1CommandLine\\2|" ${worksrcpath}/Contents/Info.plist
|
|
}
|
|
}
|
|
}
|
|
|
|
test.run yes
|
|
test.cmd Contents/Home/bin/java
|
|
test.target
|
|
test.args -version
|
|
|
|
# macOS Java tools expect to find Java virtual machines under /Library/Java/JavaVirtualMachines, which is not under ${prefix}.
|
|
destroot.violate_mtree yes
|
|
|
|
set jvms /Library/Java/JavaVirtualMachines
|
|
set jdk ${jvms}/jdk-${feature}-oracle-graalvm.jdk
|
|
|
|
destroot {
|
|
xinstall -m 755 -d ${destroot}${prefix}${jdk}
|
|
copy ${worksrcpath}/Contents ${destroot}${prefix}${jdk}
|
|
|
|
# macOS Java tools expect to find Java virtual machines under /Library/Java/JavaVirtualMachines, so let's create a symlink there
|
|
xinstall -m 755 -d ${destroot}${jvms}
|
|
ln -s ${prefix}${jdk} ${destroot}${jdk}
|
|
}
|
|
|
|
notes "
|
|
If you have more than one JDK installed you can make ${name} the default\
|
|
by adding the following line to your shell profile:
|
|
|
|
export JAVA_HOME=${jdk}/Contents/Home
|
|
"
|
|
|