mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
f81e47eea8
Some ports may have more than one `config.sub` that is in use (vendored dependencies, etc.). Instead of fiddling about with space-delimited strings, let's just make that setting into an array right away.
15 lines
601 B
Bash
Executable file
15 lines
601 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=libarchive
|
|
version=3.6.1
|
|
useconfigure=true
|
|
use_fresh_config_sub=true
|
|
config_sub_paths=("build/autoconf/config.sub")
|
|
configopts=("--without-xml2")
|
|
files="https://libarchive.org/downloads/libarchive-${version}.tar.gz libarchive-${version}.tar.gz
|
|
https://libarchive.org/downloads/libarchive-${version}.tar.gz.asc libarchive-${version}.tar.gz.asc"
|
|
depends=("zlib" "pcre")
|
|
auth_type="sig"
|
|
auth_import_key="A5A45B12AD92D964B89EEE2DEC560C81CEC2276E"
|
|
auth_opts=("libarchive-${version}.tar.gz.asc" "libarchive-${version}.tar.gz")
|
|
|
|
export ac_cv_header_regex_h=no
|