opt/gvim/Pkgfile

35 lines
1020 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
2006-02-23 16:26:10 +01:00
# Depends on: vim, gtk
name=gvim
2011-04-04 09:39:10 +02:00
version=7.3.154
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
2009-06-18 10:02:03 +02:00
gvim.desktop)
2006-02-23 16:26:10 +01: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 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 \
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=
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 16:26:10 +01:00
}