dosfstools: update to v4.0
[openwrt/openwrt.git] / tools / dosfstools / Makefile
1 #
2 # Copyright (C) 2012-2015 OpenWrt.org
3 # Copyright (C) 2016 LEDE-Project.org
4 #
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
7 #
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=dosfstools
11 PKG_VERSION:=4.0
12
13 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
14 PKG_SOURCE_URL:=https://github.com/dosfstools/dosfstools/releases/download/v$(PKG_VERSION)/ \
15 http://fossies.org/linux/misc
16 PKG_MD5SUM:=d96f46cbc5b84ad4c9766b4fbf6c8e09
17
18 HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)-$(PKG_VERSION)
19
20 include $(INCLUDE_DIR)/host-build.mk
21
22 ifeq ($(HOST_OS),Darwin)
23 LDLIBS += -liconv
24 endif
25
26 define Host/Compile
27 $(MAKE) -C $(HOST_BUILD_DIR) SHELL="$(BASH)" LDFLAGS="$(HOST_LDFLAGS)" LDLIBS="$(LDLIBS)"
28 endef
29
30 define Host/Install
31 $(INSTALL_BIN) $(HOST_BUILD_DIR)/src/mkfs.fat $(STAGING_DIR_HOST)/bin/
32 $(LN) mkfs.fat $(STAGING_DIR_HOST)/bin/mkdosfs
33 endef
34
35 define Host/Clean
36 rm -f $(STAGING_DIR_HOST)/bin/mk{dosfs,fs.fat}
37 endef
38
39 $(eval $(call HostBuild))