milis/talimatname/genel/v/vim/talimat

47 lines
912 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: The Vim package contains a powerful text editor.
# URL: http://www.vim.org/
# Paketçi: milisarge
# Gerekler:
isim=vim
surum=7.4
devir=1
kaynak=(ftp://ftp.vim.org/pub/vim/unix/vim-$surum.tar.bz2
vim-7.4-locale-1.patch)
derle()
{
vimv="vim${version/./}"
cd $vimv
patch -Np1 -i $SRC/vim-7.4-locale-1.patch
echo '#define SYS_VIMRC_FILE "/etc/vimrc"' >> src/feature.h
./configure --prefix=/usr --enable-multibyte \
--enable-gui=no --with-x=no \
--disable-gpm
make
mkdir -p $PKG/usr/share/locale
make DESTDIR=$PKG DEST_HELP=$PKG/usr/share/doc/vim-$surum \
LANGSUBLOC=/usr/share/locale install
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
mkdir $PKG/etc
cat > $PKG/etc/vimrc << "EOF"
" Begin /etc/vimrc
set background=dark
set ruler
set nocompatible
set backspace=2
syntax on
" End /etc/vimrc
EOF
}