blob: 7e3db29f0ad7eea0b37d6d7a6779fa8cdb1fcdba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# $Id: PKGBUILD 17696 2008-10-31 17:28:10Z allan $
# Maintainer: tobias [ tobias at archlinux org ]
pkgname=vim
_srcver=7.2
_patchlevel=132
pkgver=${_srcver}.${_patchlevel}
pkgrel=1.5
pkgdesc="a highly configurable, improved version of the vi text editor"
arch=(i686 x86_64)
license=('custom:vim')
url="http://www.vim.org"
depends=("vi>=${pkgver}" 'perl' 'python' 'acl' 'gpm>=1.20.4' 'libxt')
makedepends=('wget' 'sed' 'grep')
backup=(etc/vimrc)
install=${pkgname}.install
# we need the extra-stuff to get all patches applied smoothly
source=(ftp://ftp.vim.org/pub/vim/unix/vim-${_srcver}.tar.bz2 \
ftp://ftp.vim.org/pub/vim/extra/vim-${_srcver}-extra.tar.gz \
ftp://ftp.vim.org/pub/vim/extra/vim-${_srcver}-lang.tar.gz \
fetch_patches.sh)
build()
{
# pull in patches from vim.org (or the src cache alternatively)
. ${startdir}/src/fetch_patches.sh
get_patches || return 1
cd ${startdir}/src/vim$(echo ${_srcver} | sed "s/\.//")
sed -i 's|^.*\(#define SYS_.*VIMRC_FILE.*"\) .*$|\1|' src/feature.h
# build party
./configure --prefix=/usr --localstatedir=/var/lib/vim --mandir=/usr/share/man \
--with-compiledby=ArchLinux --with-features=big \
--with-x=yes --disable-gui \
--with-global-runtime=/usr/share/vim --with-vim-name=vim \
--enable-multibyte --enable-cscope \
--enable-perlinterp --enable-pythoninterp
make || return 1
make VIMRCLOC=/etc DESTDIR=${startdir}/pkg VIMRTDIR= install
cd ${startdir}/pkg/usr/bin
rm -f ex view rview xxd vimtutor
ln -s vitutor vimtutor
# delete the manpages/symlinks provided by vi package
find ${startdir}/pkg/usr/share/man -type d -name 'man1' 2> /dev/null | \
while read mandir; do
cd ${mandir}
mv vimdiff.1 vimdiff.org
rm -f *.1
ln -s rvi.1.gz rvim.1.gz
ln -s vi.1.gz vim.1.gz
ln -s vitutor.1.gz vimtutor.1.gz
mv vimdiff.org vimdiff.1
done
# kill the nobackup parts
sed -i '/vms/,+4 d' ${startdir}/pkg/usr/share/vim/vimrc_example.vim
install -Dm644 ${startdir}/pkg/usr/share/vim/vimrc_example.vim \
${startdir}/pkg/etc/vimrc
# clean all settings and controls - served by vi package
rm -rf ${startdir}/pkg/usr/share/vim
# Changes to remove mouse support VERY IMPORTANT!
##############################################################
sed -i "s/mouse=a/mouse-=a/g" $startdir/pkg/etc/vimrc
#################################################################
}
|