change cp to $(CP)
[openwrt.git] / package / nano / Makefile
1 # $Id$
2
3 include $(TOPDIR)/rules.mk
4
5 PKG_NAME:=nano
6 PKG_VERSION:=1.3.8
7 PKG_RELEASE:=1
8 PKG_MD5SUM:=20633397bf5d462255f37dfcc7cad4e7
9
10 PKG_SOURCE_URL:=http://www.ewtoo.org/~astyanax/nano/dist/v1.3 \
11         http://www.nano-editor.org/dist/v1.3
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
13 PKG_CAT:=zcat
14 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
15 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
16
17 include $(TOPDIR)/package/rules.mk
18
19 $(eval $(call PKG_template,NANO,nano,$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH)))
20
21 $(PKG_BUILD_DIR)/.configured:
22         (cd $(PKG_BUILD_DIR); \
23                 $(TARGET_CONFIGURE_OPTS) \
24                 CFLAGS="$(TARGET_CFLAGS)" \
25                 CPPFLAGS="-I$(STAGING_DIR)/usr/include -I$(STAGING_DIR)/include " \
26                 LDFLAGS="-L$(STAGING_DIR)/usr/lib -L$(STAGING_DIR)/lib" \
27                 ac_cv_header_regex_h=no \
28                 ./configure \
29                         --target=$(GNU_TARGET_NAME) \
30                         --host=$(GNU_TARGET_NAME) \
31                         --build=$(GNU_HOST_NAME) \
32                         --program-prefix="" \
33                         --program-suffix="" \
34                         --prefix=/usr \
35                         --exec-prefix=/usr \
36                         --bindir=/usr/bin \
37                         --datadir=/usr/share \
38                         --includedir=/usr/include \
39                         --infodir=/usr/share/info \
40                         --libdir=/usr/lib \
41                         --libexecdir=/usr/lib \
42                         --localstatedir=/var \
43                         --mandir=/usr/share/man \
44                         --sbindir=/usr/sbin \
45                         --sysconfdir=/etc \
46                         $(DISABLE_LARGEFILE) \
47                         $(DISABLE_NLS) \
48                         --enable-shared \
49                         --disable-static \
50                         --with-gnu-ld \
51                         --disable-rpath \
52                         --enable-tiny \
53                         --disable-glibtest \
54                         --disable-utf8 \
55                         --without-slang \
56         );
57         touch $@
58
59 $(PKG_BUILD_DIR)/.built:
60         rm -rf $(PKG_INSTALL_DIR)
61         mkdir -p $(PKG_INSTALL_DIR)
62         $(MAKE) -C $(PKG_BUILD_DIR) \
63                 DESTDIR="$(PKG_INSTALL_DIR)" \
64                 all install
65         touch $@
66
67 $(IPKG_NANO):
68         install -d -m0755 $(IDIR_NANO)/usr/bin
69         $(CP) $(PKG_INSTALL_DIR)/usr/bin/nano $(IDIR_NANO)/usr/bin/
70         $(RSTRIP) $(IDIR_NANO)
71         $(IPKG_BUILD) $(IDIR_NANO) $(PACKAGE_DIR)
72
73 mostlyclean:
74         -$(MAKE) -C $(PKG_BUILD_DIR) clean
75         rm -f $(PKG_BUILD_DIR)/.built
76