add wxBase framework library
[openwrt/svn-archive/archive.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:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
16 PKG_SOURCE_URL:=ftp://ftp.vim.org/pub/vim/unix/
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 - enhanced vi editor
28 DESCRIPTION:=\
29 Vim is an almost compatible version of the UNIX editor Vi.
30 URL:=http://www.vim.org/
31 endef
32
33 CONFIGURE_ARGS += \
34 --disable-gui \
35 --enable-gui=none \
36 --disable-gtktest \
37 --disable-xim \
38 --with-features=tiny \
39 --without-x \
40 --disable-multibyte \
41 --disable-netbeans \
42 --disable-cscope \
43 --disable-gpm \
44 --with-tlib=ncurses
45
46 define Package/vim/install
47 $(INSTALL_DIR) $(1)/usr/bin
48 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(1)/usr/bin/
49 $(INSTALL_DIR) $(1)/usr/share/vim
50 $(INSTALL_CONF) ./files/vimrc $(1)/usr/share/vim/
51 endef
52
53 $(eval $(call BuildPackage,vim))