blob: 88085c5d33e656d50c669c2fb529d77fe72ce20f (
plain)
1 # Description: GTK version of the vim editor
2 # URL: http://www.vim.org/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: vim, gtk, xorg-libxt
5
6 name=gvim
7 version=7.4.703
8 release=1
9 source=(http://crux.nu/files/distfiles/vim-$version.tar.xz
10 gvim.desktop)
11
12 build () {
13 cd vim-$version/src
14
15 ./configure --prefix=/usr \
16 --with-vim-name=gvim \
17 --with-x=yes \
18 --enable-gui=gtk2 \
19 --enable-multibyte \
20 --disable-gpm \
21 --disable-nls
22
23 make VIMRTDIR=
24 make VIMRTDIR= DESTDIR=$PKG installvimbin
25
26 install -d $PKG/usr/share/{applications,pixmaps}
27 install -m 644 $SRC/gvim.desktop $PKG/usr/share/applications
28 install -m 644 ../runtime/vim*.png $PKG/usr/share/pixmaps
29 }
|