File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,10 @@ sources = [
14
14
# Bash recipe for building across all platforms
15
15
script = raw """
16
16
cd ${WORKSPACE}/srcdir/libxml2-*
17
- ./autogen.sh
18
- ./configure --prefix=${prefix} --host=${target} --without-python --with-zlib=${prefix}
17
+ ./autogen.sh --prefix=${prefix} --host=${target} \
18
+ --without-python \
19
+ --with-zlib=${prefix} \
20
+ --with-iconv=${prefix}
19
21
make -j${nproc} install
20
22
"""
21
23
@@ -25,12 +27,15 @@ platforms = supported_platforms()
25
27
26
28
# The products that we will ensure are always built
27
29
products = [
28
- LibraryProduct (" libxml2" , :libxml2 )
30
+ LibraryProduct (" libxml2" , :libxml2 ),
31
+ ExecutableProduct (" xmlcatalog" , :xmlcatalog ),
32
+ ExecutableProduct (" xmllint" , :xmllint ),
29
33
]
30
34
31
35
# Dependencies that must be installed before this package can be built
32
36
dependencies = [
33
- " Zlib_jll"
37
+ " Zlib_jll" ,
38
+ " Libiconv_jll" ,
34
39
]
35
40
36
41
# Build the tarballs, and possibly a `build.jl` as well.
You can’t perform that action at this time.
0 commit comments