opt/gvim/Pkgfile

28 lines
723 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: GTK version of the vim editor
# URL: http://www.vim.org/
2011-02-02 13:44:37 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
2012-11-21 15:58:31 +01:00
# Depends on: vim, gtk, xorg-libxt
2006-02-23 16:26:10 +01:00
name=gvim
2017-02-17 12:51:13 +01:00
version=8.0.0329
2007-05-13 10:49:23 +02:00
release=1
2016-09-24 18:29:39 +02:00
source=(http://crux.nu/files/distfiles/vim-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build () {
2013-11-18 12:41:08 +01:00
cd vim-$version/src
2010-11-05 17:21:19 +01:00
2006-02-23 16:26:10 +01:00
./configure --prefix=/usr \
--with-vim-name=gvim \
--with-x=yes \
--enable-gui=gtk2 \
2006-07-16 20:49:43 +02:00
--enable-multibyte \
--enable-cscope \
2006-02-23 16:26:10 +01:00
--disable-gpm \
--disable-nls
2007-04-19 18:34:23 +02:00
2006-02-23 16:26:10 +01:00
make VIMRTDIR=
2016-09-24 18:29:39 +02:00
make VIMRTDIR= DESTDIR=$PKG installvimbin install-icons
2009-06-18 10:02:03 +02:00
2016-09-24 18:29:39 +02:00
sed -ri '/\[.+\]=/d' $PKG/usr/share/applications/*.desktop
2006-02-23 16:26:10 +01:00
}