Update vim: 5.8 > 7.1
[packages.git] / utils / vim / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=vim
12 PKG_VERSION:=7.1
13 PKG_RELEASE:=2
14
15 PKG_SOURCE_URL:=ftp://ftp.vim.org/pub/vim/unix/
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_MD5SUM:=44c6b4914f38d6f9aa959640b89da329
18
19 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)71
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/vim
24   SECTION:=utils
25   CATEGORY:=Utilities
26   DEPENDS:=+libncurses
27   TITLE:=VI Improved
28   URL:=http://www.vim.org/
29 endef
30
31 CONFIGURE_ARGS += \
32         ac_cv_sizeof_int=4 \
33         , \
34         --enable-min-features \
35         --disable-gui \
36         --without-x \
37         --disable-multibyte \
38         --disable-cscope \
39         --disable-gpm \
40         --with-tlib=ncurses
41
42 define Package/vim/install      
43         $(INSTALL_DIR) $(1)/usr/bin
44         $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/bin/
45         $(INSTALL_DIR) $(1)/usr/share/vim
46         $(INSTALL_CONF) ./files/vimrc $(1)/usr/share/vim/
47 endef
48
49 $(eval $(call BuildPackage,vim))