1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-16 12:28:33 +00:00
morpheus/pkgs/vim

12 lines
302 B
Plaintext
Raw Normal View History

2014-02-28 21:19:02 +00:00
v="7.4"
url="http://ftp.vim.org/pub/vim/unix/vim-$v.tar.bz2"
2014-02-27 12:41:37 +00:00
build: ncurses
2014-02-28 21:19:02 +00:00
cd src/vim74
make clean
CC=$CC ./configure --prefix=/ \
2014-02-26 10:17:27 +00:00
--enable-multibyte --disable-gui --with-x=no \
2014-02-26 10:22:59 +00:00
--disable-nls --disable-netbeans || return 1
2014-02-26 09:01:52 +00:00
make -j$nprocs || return 1
make DESTDIR="$root" install || return 1