blob: 042272fbe97109ddab6f6db0e4d5b1dfc3b1175a (
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=8.0.0008
8 release=1
9 source=(http://crux.nu/files/distfiles/vim-$version.tar.xz)
10
11 build () {
12 cd vim-$version/src
13
14 ./configure --prefix=/usr \
15 --with-vim-name=gvim \
16 --with-x=yes \
17 --enable-gui=gtk2 \
18 --enable-multibyte \
19 --enable-cscope \
20 --disable-gpm \
21 --disable-nls
22
23 make VIMRTDIR=
24 make VIMRTDIR= DESTDIR=$PKG installvimbin install-icons
25
26 sed -ri '/\[.+\]=/d' $PKG/usr/share/applications/*.desktop
27 }
|