diff options
author | Tim Schumacher <timschumi@gmx.de> | 2021-09-27 00:16:18 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-10-05 02:13:08 +0200 |
commit | c07f91474de4088c4eccd45ccc6883a515439d69 (patch) | |
tree | 19bdb4797935e826f638053ea8d4250bd453dd0a /Ports/libarchive/package.sh | |
parent | e507cfcdb0cc3be9e8e3304952c81d4410e6b610 (diff) | |
download | serenity-c07f91474de4088c4eccd45ccc6883a515439d69.zip |
Ports: Make array-like settings actual arrays
We may need entries with spaces in makeopts, installopts, and
configopts, and at that point we should also convert depends and
auth_opts to avoid confusion.
Diffstat (limited to 'Ports/libarchive/package.sh')
-rwxr-xr-x | Ports/libarchive/package.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Ports/libarchive/package.sh b/Ports/libarchive/package.sh index bb0b945238..11fd50ae3f 100755 --- a/Ports/libarchive/package.sh +++ b/Ports/libarchive/package.sh @@ -2,12 +2,12 @@ port=libarchive version=3.5.2 useconfigure=true -configopts="--without-xml2" +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" +depends=("zlib" "pcre") auth_type="sig" auth_import_key="A5A45B12AD92D964B89EEE2DEC560C81CEC2276E" -auth_opts="libarchive-${version}.tar.gz.asc libarchive-${version}.tar.gz" +auth_opts=("libarchive-${version}.tar.gz.asc" "libarchive-${version}.tar.gz") export ac_cv_header_regex_h=no |