blob: 6b59a3547800c4efa4b6f2adf2e38aebeaf36c6c (
plain)
1 # Description: GTK version of the vim editor
2 # URL: https://www.vim.org/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: gtk3 vim xorg-libxt
5
6 name=gvim
7 version=8.2.3671
8 release=1
9 source=(https://github.com/vim/vim/archive/v${version}/vim-$version.tar.gz)
10
11 build() {
12 cd vim-$version/src
13
14 sed -i '/^CFLAGS/d' Makefile
15
16 ./configure \
17 --prefix=/usr \
18 --with-vim-name=gvim \
19 --with-x=yes \
20 --enable-gui=gtk3 \
21 --enable-multibyte \
22 --enable-cscope \
23 --disable-gpm \
24 --disable-nls
25
26 make VIMRTDIR=
27 make VIMRTDIR= DESTDIR=$PKG installvimbin install-icons
28
29 sed -ri '/\[.+\]=/d' $PKG/usr/share/applications/*.desktop
30 }
|