mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-05-22 19:19:10 +00:00
31 lines
569 B
Bash
Executable File
31 lines
569 B
Bash
Executable File
#!/bin/sh
|
|
PORT_DIR=vim
|
|
INSTALLOPTS="DESTDIR=$SERENITY_ROOT/Root/"
|
|
|
|
function fetch() {
|
|
run_fetch_git "https://github.com/vim/vim.git"
|
|
}
|
|
|
|
function configure() {
|
|
run_send_to_file src/auto/config.cache "
|
|
vim_cv_getcwd_broken=no
|
|
vim_cv_memmove_handles_overlap=yes
|
|
vim_cv_stat_ignores_slash=yes
|
|
vim_cv_tgetent=zero
|
|
vim_cv_terminfo=yes
|
|
vim_cv_toupper_broken=no
|
|
vim_cv_tty_group=world
|
|
"
|
|
run_configure_autotools --with-tlib=ncurses --with-features=small
|
|
}
|
|
|
|
function build() {
|
|
run_make
|
|
}
|
|
|
|
function install() {
|
|
run_make_install
|
|
}
|
|
|
|
source ../.port_include.sh
|