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