1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-29 22:31:21 +00:00
morpheus/pkgs/vim/build
Daniel Bainton ac90eb3aa3 Move each package to their own dir
Also support for the $pkgdir variable in build files, which will include
the full path to the directory of the package (for patches, configs etc)
2014-03-09 13:56:35 +02:00

13 lines
293 B
Plaintext

v="7.4"
url="http://ftp.vim.org/pub/vim/unix/vim-$v.tar.bz2"
build: ncurses
cd src/vim74
make clean
CC=$CC ./configure --prefix=/ \
--enable-multibyte --disable-gui --with-x=no \
--disable-nls --disable-netbeans
make -j$nprocs
make DESTDIR="$root" install
ln -sf vim "$root/bin/vi"