mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +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.
12 lines
583 B
Bash
Executable file
12 lines
583 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=libexpat
|
|
version=2.4.8
|
|
useconfigure=true
|
|
use_fresh_config_sub=true
|
|
config_sub_paths=("conftools/config.sub")
|
|
files="https://github.com/libexpat/libexpat/releases/download/R_${version//./_}/expat-${version}.tar.xz expat-${version}.tar.xz
|
|
https://github.com/libexpat/libexpat/releases/download/R_${version//./_}/expat-${version}.tar.xz.asc expat-${version}.tar.xz.asc"
|
|
workdir=expat-${version}
|
|
auth_type="sig"
|
|
auth_import_key="CB8DE70A90CFBF6C3BF5CC5696262ACFFBD3AEC6"
|
|
auth_opts=("expat-${version}.tar.xz.asc" "expat-${version}.tar.xz")
|