@@ -12,6 +12,8 @@ sources = [
12
12
DirectorySource (" ./bundled" )
13
13
]
14
14
15
+ version = v " 4.1.100" # <--- This version number is a lie, we just need to bump it to build for experimental platforms
16
+
15
17
# Bash recipe for building across all platforms
16
18
script = raw """
17
19
cd $WORKSPACE/srcdir/tesseract-*/
@@ -28,7 +30,7 @@ make install
28
30
29
31
# These are the platforms we will build for by default, unless further
30
32
# platforms are passed in on the command line
31
- platforms = expand_cxxstring_abis (supported_platforms ())
33
+ platforms = expand_cxxstring_abis (supported_platforms (; experimental = true ))
32
34
33
35
# The products that we will ensure are always built
34
36
products = [
@@ -41,15 +43,15 @@ dependencies = [
41
43
Dependency (" Giflib_jll" ),
42
44
Dependency (" JpegTurbo_jll" ),
43
45
Dependency (" libpng_jll" ),
44
- Dependency (" Libtiff_jll" ),
46
+ Dependency (" Libtiff_jll" ; compat = " 4.3.0 " ),
45
47
Dependency (" Zlib_jll" ),
46
48
Dependency (" Leptonica_jll" ),
47
49
Dependency (" CompilerSupportLibraries_jll" ),
48
50
# Optional dependencies
49
51
# Dependency("ICU_jll"),
50
- Dependency (" Cairo_jll" ),
51
- Dependency (" Pango_jll" ),
52
+ Dependency (" Cairo_jll" ; compat = " 1.16.1 " ),
53
+ Dependency (" Pango_jll" ; compat = " 1.47.0 " ),
52
54
]
53
55
54
56
# Build the tarballs, and possibly a `build.jl` as well.
55
- build_tarballs (ARGS , name, version, sources, script, platforms, products, dependencies)
57
+ build_tarballs (ARGS , name, version, sources, script, platforms, products, dependencies; julia_compat = " 1.6 " )
0 commit comments