d7c85b2d42d922fcddc5bf2a997098ad58b2c29c
[openwrt/staging/nbd.git] / package / system / iucode-tool / Makefile
1 #
2 # Copyright (C) 2018 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=iucode-tool
11 PKG_VERSION:=2.3.1
12 PKG_RELEASE:=2
13
14 PKG_SOURCE:=iucode-tool_$(PKG_VERSION).tar.xz
15 PKG_SOURCE_URL:=https://gitlab.com/iucode-tool/releases/raw/latest
16 PKG_HASH:=12b88efa4d0d95af08db05a50b3dcb217c0eb2bfc67b483779e33d498ddb2f95
17
18 PKG_BUILD_DEPENDS:=USE_UCLIBC:argp-standalone USE_MUSL:argp-standalone
19 HOST_BUILD_DEPENDS:=HOST_OS_MACOS:argp-standalone/host
20
21 PKG_MAINTAINER:=Zoltan HERPAI <wigyori@uid0.hu>
22 PKG_LICENSE:=GPL-2.0
23
24 PKG_FLAGS:=nonshared
25
26 PKG_INSTALL:=1
27
28 include $(INCLUDE_DIR)/package.mk
29 include $(INCLUDE_DIR)/host-build.mk
30
31 define Package/iucode-tool
32 SECTION:=utils
33 CATEGORY:=Base system
34 URL:=$(PKG_SOURCE_URL)
35 DEPENDS:=@TARGET_x86
36 TITLE:=Intel microcode loader
37 endef
38
39 define Package/iucode-tool/install
40 $(INSTALL_DIR) $(1)/lib/firmware
41 $(INSTALL_DIR) $(1)/usr/bin
42 $(INSTALL_BIN) $(PKG_BUILD_DIR)/iucode_tool $(1)/usr/bin/
43 endef
44
45 # List of build hosts with working cpuid.h
46 IUT_NATIVE_HOST_OS_ARCH := \
47 linux/x86_64 linux/amd64 linux/i386 linux/i686
48
49 IUT_HOST_OS_ARCH := $(call tolower,$(HOST_OS))/$(HOST_ARCH)
50
51 # Use cpuid.h compat header if build host does not have working cpuid.h
52 ifeq ($(filter $(IUT_HOST_OS_ARCH),$(IUT_NATIVE_HOST_OS_ARCH)),)
53 HOST_CFLAGS += \
54 -I$(HOST_BUILD_DIR)/cpuid-compat
55 endif
56
57 define Host/Install
58 $(INSTALL_BIN) $(HOST_BUILD_DIR)/iucode_tool $(STAGING_DIR_HOST)/bin/iucode_tool
59 endef
60
61 $(eval $(call HostBuild))
62 $(eval $(call BuildPackage,iucode-tool))