mirror of
https://github.com/RGBCube/serenity
synced 2025-07-14 05:27:35 +00:00

Previously we were only able to build with --with-features=small. Thanks to all the compatibility work done in the kernel and LibC over the last couple of months, we can now build --with-features=normal. It's not the biggest deal in the world, but it's pretty nice to see this kind of progress!
17 lines
479 B
Bash
Executable file
17 lines
479 B
Bash
Executable file
#!/bin/bash ../.port_include.sh
|
|
port=vim
|
|
version=git
|
|
workdir=vim-master
|
|
useconfigure="true"
|
|
curlopts="-L"
|
|
files="https://github.com/vim/vim/archive/master.tar.gz vim-git.tar.gz"
|
|
configopts="--with-tlib=ncurses --with-features=normal"
|
|
depends="ncurses"
|
|
|
|
export vim_cv_getcwd_broken=no
|
|
export vim_cv_memmove_handles_overlap=yes
|
|
export vim_cv_stat_ignores_slash=yes
|
|
export vim_cv_tgetent=zero
|
|
export vim_cv_terminfo=yes
|
|
export vim_cv_toupper_broken=no
|
|
export vim_cv_tty_group=world
|