blob: b332efdb96cab962832225b6b30021351a465511 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001#
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#
8include $(TOPDIR)/rules.mk
9
10PKG_NAME:=dosfstools
11PKG_CPE_ID:=cpe:/a:dosfstools_project:dosfstools
12PKG_VERSION:=4.2
13
14PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15PKG_SOURCE_URL:=https://github.com/dosfstools/dosfstools/releases/download/v$(PKG_VERSION)/ \
16 http://fossies.org/linux/misc
17PKG_HASH:=64926eebf90092dca21b14259a5301b7b98e7b1943e8a201c7d726084809b527
18
19HOST_FIXUP:=autoreconf
20
21include $(INCLUDE_DIR)/host-build.mk
22
23ifeq ($(HOST_OS),Darwin)
24HOST_CFLAGS += -UHAVE_ENDIAN_H
25endif
26
27define Host/Uninstall
28 -$(call Host/Compile/Default,uninstall)
29endef
30
31$(eval $(call HostBuild))