mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 18:17:45 +00:00
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.
This commit is contained in:
parent
e507cfcdb0
commit
c07f91474d
149 changed files with 352 additions and 345 deletions
|
@ -5,8 +5,8 @@ workdir="${port}-${version}"
|
|||
useconfigure="true"
|
||||
files="https://github.com/vim/vim/archive/refs/tags/v${version}.tar.gz vim-v${version}.tar.gz 47613400943bbf3e110c38e8c4923b9e51c1d63d9774313820e1d9b4c4bb9e11"
|
||||
auth_type=sha256
|
||||
configopts="--with-tlib=tinfo --with-features=normal"
|
||||
depends="ncurses gettext"
|
||||
configopts=("--with-tlib=tinfo" "--with-features=normal")
|
||||
depends=("ncurses" "gettext")
|
||||
|
||||
export vim_cv_getcwd_broken=no
|
||||
export vim_cv_memmove_handles_overlap=yes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue