1 Star 0 Fork 12

DXwangg/openjfx8_patch

forked from src-openEuler/openjfx8 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
README.openeuler 679 Bytes
一键复制 编辑 原始数据 按行查看 历史
Noah 提交于 2020-06-01 17:37 . initial packaging
This OpenEuler package installs JavaFX in a JDK/JRE-independent way. It is
up to each JDK/JRE to make use of it correctly. In general, you want to symlink
the shared object and the jar into somehwere where the JDK/JRE can find it.
The process looks something like this:
openjfx_dir=/usr/lib/jvm/openjfx
jdk_files=$(find $openjfx_dir/{bin,lib} -type f -print)
for file in $jdk_files; do
relative=${file#$openjfx_dir/}
ln -sfv "$openjfx_dir/$relative" "/usr/lib/jvm/java/$relative"
done
jre_files=$(find $openjfx_dir/rt -type f -print)
for file in $jre_files; do
relative=${file#$openjfx_dir/rt/}
ln -sfv "$openjfx_dir/rt/$relative" "/usr/lib/jvm/jre/$relative"
done
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/DXwangg/openjfx8_patch.git
git@gitee.com:DXwangg/openjfx8_patch.git
DXwangg
openjfx8_patch
openjfx8_patch
master

搜索帮助