source: issm/trunk/externalpackages/vim/install.sh@ 11237

Last change on this file since 11237 was 11237, checked in by Eric.Larour, 13 years ago

merged trunk-jpl and trunk for revision 11236

  • Property svn:executable set to *
File size: 423 bytes
Line 
1#!/bin/bash
2
3#Some cleanup
4rm -rf install src
5rm -rf vim72
6mkdir install src
7
8#Untar
9bzip2 -d -k vim-7.2.tar.bz2
10tar -xvf vim-7.2.tar
11rm vim-7.2.tar
12
13#Move vim into install directory
14mv vim72/* src
15rm -rf vim72
16
17#Configure vim (icc seems to have issues with wctype.h)
18export CC=gcc
19cd src/src
20./configure \
21 --prefix "$ISSM_TIER/externalpackages/vim/install" \
22 --with-gcc "/usr/bin/gcc"
23
24#Compile vim
25make
26make install
Note: See TracBrowser for help on using the repository browser.