12993458c4045a25ea4eb9ce4c1cf1a4c34704ad
[openwrt.git] / tools / mtools / Makefile
1
2 # Copyright (C) 2012 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 include $(TOPDIR)/rules.mk
8
9 PKG_NAME:=mtools
10 PKG_VERSION:=4.0.17
11
12 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
13 PKG_SOURCE_URL:=@GNU/$(PKG_NAME)
14 PKG_MD5SUM:=231741ac95802d03aa32f44edb768171
15 PKG_CAT:=zcat
16
17 include $(INCLUDE_DIR)/host-build.mk
18
19 HOST_CONFIGURE_VARS += \
20         ac_cv_header_iconv_h=no
21
22 HOST_LDFLAGS += $(HOST_STATIC_LINKING)
23
24 define Host/Compile
25         $(MAKE) -C $(HOST_BUILD_DIR) mcopy
26 endef
27
28 define Host/Install
29         $(INSTALL_BIN) $(HOST_BUILD_DIR)/mcopy $(STAGING_DIR_HOST)/bin/
30 endef
31
32 define Host/Clean
33         rm -f $(STAGING_DIR_HOST)/bin/mcopy
34 endef
35
36 $(eval $(call HostBuild))