add wxBase framework library
[openwrt/svn-archive/archive.git] / utils / nano / 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:=nano
12 PKG_VERSION:=2.0.6
13 PKG_RELEASE:=1
14
15 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
16 PKG_SOURCE_URL:=http://www.nano-editor.org/dist/v2.0
17 PKG_MD5SUM:=619107f0fc3c4383d668cef15aa3ca32
18 PKG_CAT:=zcat
19
20 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
21 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
22
23 include $(INCLUDE_DIR)/package.mk
24
25 define Package/nano
26 SECTION:=utils
27 CATEGORY:=Utilities
28 DEPENDS:=+libncurses
29 TITLE:=An enhanced clone of the Pico text editor
30 DESCRIPTION:=\
31 GNU nano (Nano's ANOther editor, or Not ANOther editor) is an enhanced clone \\\
32 of the Pico text editor..
33 URL:=http://www.nano-editor.org/
34 endef
35
36 define Build/Configure
37 $(call Build/Configure/Default, \
38 --enable-tiny \
39 --disable-glibtest \
40 --disable-utf8 \
41 --without-slang \
42 , \
43 ac_cv_header_regex_h=no \
44 )
45 endef
46
47 define Build/Compile
48 $(MAKE) -C $(PKG_BUILD_DIR) \
49 DESTDIR="$(PKG_INSTALL_DIR)" \
50 all install
51 endef
52
53 define Package/nano/install
54 $(INSTALL_DIR) $(1)/usr/bin
55 $(CP) $(PKG_INSTALL_DIR)/usr/bin/nano $(1)/usr/bin/
56 endef
57
58 $(eval $(call BuildPackage,nano))