|
1 | 1 | # Note that this script can accept some limited command-line arguments, run |
2 | 2 | # `julia build_tarballs.jl --help` to see a usage message. |
3 | 3 | using BinaryBuilder |
4 | | -using Pkg: PackageSpec |
5 | 4 |
|
6 | 5 | const YGGDRASIL_DIR = "../.." |
7 | 6 | include(joinpath(YGGDRASIL_DIR, "fancy_toys.jl")) |
@@ -61,7 +60,6 @@ install_license $WORKSPACE/srcdir/gr/LICENSE.md |
61 | 60 | if [[ $target == *"apple-darwin"* ]]; then |
62 | 61 | cd ${bindir} |
63 | 62 | ln -s ../Applications/gksqt.app/Contents/MacOS/gksqt ./ |
64 | | - ln -s ../Applications/grplot.app/Contents/MacOS/grplot ./ |
65 | 63 | ln -s ../Applications/GKSTerm.app/Contents/MacOS/GKSTerm ./ |
66 | 64 | fi |
67 | 65 | """ |
@@ -104,11 +102,12 @@ dependencies = [ |
104 | 102 | Dependency("libpng_jll"), |
105 | 103 | Dependency("Libtiff_jll"; compat="4.7.1"), |
106 | 104 | Dependency("Pixman_jll"), |
107 | | - Dependency("Qt6Base_jll"), |
| 105 | + HostBuildDependency("Qt6Base_jll"), |
| 106 | + Dependency("Qt6Base_jll"; compat="~6.10.2"), |
108 | 107 | BuildDependency("Xorg_libX11_jll"), |
109 | 108 | BuildDependency("Xorg_xproto_jll"), |
110 | | - Dependency("Zlib_jll"), |
111 | | - HostBuildDependency(PackageSpec(; name="CMake_jll", version = "3.31.9")), |
| 109 | + Dependency("Zlib_jll"; compat="1.3.1"), |
| 110 | + HostBuildDependency("CMake_jll"), |
112 | 111 | ] |
113 | 112 |
|
114 | 113 | platforms_win = filter(Sys.iswindows, platforms) |
|
0 commit comments