2021-06-04 18:47:17 +03:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
2022-06-03 18:27:16 +03:00
|
|
|
port='libxml2'
|
|
|
|
version='2.9.14'
|
2023-07-10 14:10:29 +03:00
|
|
|
files=(
|
2023-08-07 22:10:39 +03:00
|
|
|
"https://download.gnome.org/sources/libxml2/2.9/libxml2-${version}.tar.xz 60d74a257d1ccec0475e749cba2f21559e48139efba6ff28224357c7c798dfee"
|
2023-07-10 14:10:29 +03:00
|
|
|
)
|
2022-06-03 18:27:16 +03:00
|
|
|
useconfigure='true'
|
|
|
|
use_fresh_config_sub='true'
|
2022-06-03 18:12:43 +03:00
|
|
|
configopts=("--with-sysroot=${SERENITY_INSTALL_ROOT}" "--prefix=/usr/local" "--without-python" "--disable-static" "--enable-shared")
|
2022-06-03 18:27:16 +03:00
|
|
|
depends=("libiconv" "xz")
|