[Vim] ソースコードからVimをインストールする(Ubuntu 18.04)

久しぶりにVimをソースコードからインストールします。

環境

  • Ubuntu 18.04 LTS

事前準備

ビルドに必要なパッケージをインストールします。
Software Updater > Settings... > Source codeにチェック



  これで以下のコマンドを実行します。

$ sudo apt build-dep vim

  

ソースをダウンロード

$ git clone https://github.com/vim-jp/vim.git
# 最新版をインストールする場合は
$ git clone https://github.com/vim/vim.git

コンパイル

$ ./configure --enable-multibyte --enable-perlinterp --disable-selinux --enable-python3interp=yes --enable-luainterp=yes --enable-pythoninterp=yes
$ make
$ sudo make install

configureのオプションは
./configure --help
で確認できます。

来年はもっとVimをビルドしようと思います。

参考URL

0 件のコメント :

コメントを投稿