2006-02-23 15:26:10 +00: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
|
2006-02-23 15:26:10 +00:00
|
|
|
# Depends on: vim, gtk
|
|
|
|
|
|
|
|
name=gvim
|
2012-05-03 17:32:44 +02:00
|
|
|
version=7.3.515
|
2007-05-13 10:49:23 +02:00
|
|
|
release=1
|
2010-08-22 10:49:02 +02:00
|
|
|
source=(ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2
|
2010-11-05 17:21:19 +01:00
|
|
|
http://crux.nu/files/distfiles/vim-7.3.001-050.xz
|
2011-01-19 19:16:50 +01:00
|
|
|
http://crux.nu/files/distfiles/vim-7.3.051-102.xz
|
2011-04-04 09:39:10 +02:00
|
|
|
http://crux.nu/files/distfiles/vim-7.3.103-154.xz
|
2011-05-23 09:32:41 +02:00
|
|
|
http://crux.nu/files/distfiles/vim-7.3.155-198.xz
|
2011-07-22 12:56:50 +02:00
|
|
|
http://crux.nu/files/distfiles/vim-7.3.199-260.xz
|
2011-09-11 09:54:58 +02:00
|
|
|
http://crux.nu/files/distfiles/vim-7.3.261-303.xz
|
2011-10-29 18:04:35 +02:00
|
|
|
http://crux.nu/files/distfiles/vim-7.3.304-353.xz
|
2012-01-11 14:53:08 +01:00
|
|
|
http://crux.nu/files/distfiles/vim-7.3.354-401.xz
|
2012-03-12 17:30:51 +01:00
|
|
|
http://crux.nu/files/distfiles/vim-7.3.402-470.xz
|
2012-05-03 17:32:44 +02:00
|
|
|
http://crux.nu/files/distfiles/vim-7.3.471-515.xz
|
2009-06-18 10:02:03 +02:00
|
|
|
gvim.desktop)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build () {
|
2010-08-22 10:49:02 +02:00
|
|
|
cd vim73/src
|
2010-11-05 17:21:19 +01:00
|
|
|
|
|
|
|
unxz -c $SRC/vim-7.3.*.xz | patch -p0 -d $SRC/vim73
|
2008-11-28 11:57:43 +01:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--with-vim-name=gvim \
|
|
|
|
--with-x=yes \
|
|
|
|
--enable-gui=gtk2 \
|
2006-07-16 18:49:43 +00:00
|
|
|
--enable-multibyte \
|
2006-02-23 15:26:10 +00:00
|
|
|
--disable-gpm \
|
|
|
|
--disable-nls
|
2007-04-19 18:34:23 +02:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
make VIMRTDIR=
|
|
|
|
make VIMRTDIR= DESTDIR=$PKG installvimbin
|
2009-06-18 10:02:03 +02:00
|
|
|
|
|
|
|
install -d $PKG/usr/share/{applications,pixmaps}
|
|
|
|
install -m 644 $SRC/gvim.desktop $PKG/usr/share/applications
|
|
|
|
install -m 644 ../runtime/vim*.png $PKG/usr/share/pixmaps
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|