diff options
author | tnut <tnut at nutyx dot com> | 2012-01-08 12:12:28 +0100 |
---|---|---|
committer | tnut <tnut at nutyx dot com> | 2012-01-08 12:12:28 +0100 |
commit | 9291e062cb24bac5d7c7059d4dc64669c1917b33 (patch) | |
tree | ae6f7e4fb2769d6c53b214c5e0b4d862f1df98dc /vim/Pkgfile | |
parent | c9972ec7f32bf9d37388e853fe9bf633e242d05a (diff) | |
download | nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.gz nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.bz2 nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.xz nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.zip |
aaabasicfs 2011-3 et split des dépot base et extra en 2 git séparé
Diffstat (limited to 'vim/Pkgfile')
-rwxr-xr-x | vim/Pkgfile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/vim/Pkgfile b/vim/Pkgfile new file mode 100755 index 000000000..f86b618a8 --- /dev/null +++ b/vim/Pkgfile @@ -0,0 +1,37 @@ +# Description: Le plus populaire des éditeurs de texte colorimétrique +# URL: http://www.vim.org/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=vim +version=7.3 +release=2 +source=(ftp://ftp.vim.org/pub/vim/unix/vim-$version.tar.bz2\ + vimrc) +build () { +cd $name${version/\./} +echo '#define SYS_VIMRC_FILE "/etc/vimrc"' >> src/feature.h +./configure --prefix=/usr \ + --enable-gui=no --with-x=no \ + --enable-multibyte --disable-gpm + +make +make DESTDIR=$PKG install +mkdir -v $PKG/{etc,usr/share/doc} +cat > $PKG/etc/vimrc << "EOF" +" Begin /etc/vimrc + +set nocompatible +set backspace=2 +set background=dark +syntax on +set ruler +" End /etc/vimrc +EOF + +ln -sv vim $PKG/usr/bin/vi +for L in $PKG/usr/share/man/{,*/}man1/vim.1; do + ln -sv vim.1 $(dirname $L)/vi.1 +done +ln -sv ../vim/vim72/doc $PKG/usr/share/doc/vim-$version +} |