CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
4da80baef53182750dc9fb7d9e585ce45b1e632a
[crossrootfs.git] / vim / Pkgfile
1 # Description: Highly configurable text editor
2 # URL: http://www.vim.org/
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4 # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
5 # Depends on: ncurses acl
6
7 name=vim
8 version=7.4.890
9 release=1
10 source=(http://crux.nu/files/distfiles/$name-$version.tar.xz)
11
12 build () {
13 cd $name-$version/src
14
15 cat > auto/config.cache << EOF
16 vim_cv_getcwd_broken=no
17 vim_cv_memmove_handles_overlap=yes
18 vim_cv_stat_ignores_slash=no
19 vim_cv_terminfo=yes
20 vim_cv_tgent=zero
21 vim_cv_toupper_broken=no
22 vim_cv_tty_group=world
23 ac_cv_sizeof_int=4
24 vim_cv_toupper_broken=no
25 EOF
26
27 ./configure --build=$CHOST \
28 --host=$CTARGET \
29 --prefix=/usr \
30 --with-vim-name=vim \
31 --with-tlib=ncurses \
32 --without-x \
33 --disable-gui \
34 --enable-multibyte \
35 --disable-gpm \
36 --disable-nls \
37 --cache-file=$SRC/src/auto/config.cache
38
39 make VIMRTDIR=
40 make -j1 VIMRTDIR= DESTDIR=$PKG install
41
42 mv $PKG/usr/share/vim/vimrc_example.vim $PKG/usr/share/vim/vimrc
43 rm -r $PKG/usr/{share/man/man?/vimtutor*,share/vim/{tutor,macros}}
44 rm $PKG/usr/share/vim/*/README.txt
45 ln -sf vim $PKG/usr/bin/evim
46 ln -sf /bin/vi $PKG/usr/bin/vi
47 ln -sf vim.1.gz $PKG/usr/share/man/man1/ex.1.gz
48 ln -sf vim.1.gz $PKG/usr/share/man/man1/vi.1.gz
49 ln -sf vim.1.gz $PKG/usr/share/man/man1/rvim.1.gz
50 ln -sf vim.1.gz $PKG/usr/share/man/man1/view.1.gz
51 ln -sf vim.1.gz $PKG/usr/share/man/man1/rview.1.gz
52 ln -sf vim.1.gz $PKG/usr/share/man/man1/gvim.1.gz
53
54 ./configure --build=$CHOST \
55 --host=$CTARGET \
56 --prefix=/ \
57 --datarootdir=/usr/share \
58 --with-vim-name=vi \
59 --without-x \
60 --with-tlib=ncurses \
61 --disable-gui \
62 --enable-multibyte \
63 --disable-gpm \
64 --disable-nls \
65 --with-features=tiny
66
67 make VIMRTDIR=
68 make VIMRTDIR= DESTDIR=$PKG installvimbin
69 }