2021-01-23 05:44:05 +13:00
|
|
|
#!/usr/bin/env -S bash ../.port_include.sh
|
2023-09-01 15:27:50 +02:00
|
|
|
port='libarchive'
|
2023-09-01 20:11:08 +02:00
|
|
|
version='3.7.1'
|
2023-09-01 15:27:50 +02:00
|
|
|
useconfigure='true'
|
|
|
|
use_fresh_config_sub='true'
|
|
|
|
config_sub_paths=(
|
|
|
|
'build/autoconf/config.sub'
|
|
|
|
)
|
|
|
|
configopts=(
|
|
|
|
'--without-xml2'
|
2023-09-01 20:11:08 +02:00
|
|
|
"--with-sysroot=${SERENITY_INSTALL_ROOT}"
|
2023-09-01 15:27:50 +02:00
|
|
|
)
|
2023-07-10 13:10:29 +02:00
|
|
|
files=(
|
2023-09-01 20:11:08 +02:00
|
|
|
"https://libarchive.org/downloads/libarchive-${version}.tar.gz#5d24e40819768f74daf846b99837fc53a3a9dcdf3ce1c2003fe0596db850f0f0"
|
2023-07-10 13:10:29 +02:00
|
|
|
)
|
2023-09-01 15:27:50 +02:00
|
|
|
depends=(
|
|
|
|
'pcre'
|
|
|
|
'zlib'
|
|
|
|
)
|
2021-04-12 01:40:00 +02:00
|
|
|
|
2023-09-01 15:27:50 +02:00
|
|
|
export ac_cv_header_regex_h='no'
|