summaryrefslogtreecommitdiffstats
path: root/rules/host-mfgtools.make
blob: a99ad60554be1a576723c0ad99269611e2a2b11d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# -*-makefile-*-
#
# Copyright (C) 2020 by Denis Osterland-Heim <Denis.Osterland@diehl.com>
#
# For further information about the PTXdist project and license conditions
# see the README file.
#

HOST_PACKAGES-$(PTXCONF_HOST_MFGTOOLS) += host-mfgtools

#
# Paths and names
#
HOST_MFGTOOLS_VERSION	:= 1.3.191
HOST_MFGTOOLS_MD5	:= f77be0d7a5aaafbae063eb61bd4207ea
HOST_MFGTOOLS		:= mfgtools-$(HOST_MFGTOOLS_VERSION)
HOST_MFGTOOLS_SUFFIX	:= tar.gz
HOST_MFGTOOLS_URL	:= https://github.com/NXPmicro/mfgtools/releases/download/uuu_$(HOST_MFGTOOLS_VERSION)/uuu_source-$(HOST_MFGTOOLS_VERSION).$(HOST_MFGTOOLS_SUFFIX)
HOST_MFGTOOLS_SOURCE	:= $(SRCDIR)/$(HOST_MFGTOOLS).$(HOST_MFGTOOLS_SUFFIX)
HOST_MFGTOOLS_DIR	:= $(HOST_BUILDDIR)/$(HOST_MFGTOOLS)
HOST_MFGTOOLS_LICENSE	:= BSD-3-Clause
HOST_MFGTOOLS_LICENSE_FILES	:= \
	file://LICENSE;md5=38ec0c18112e9a92cffc4951661e85a5

# ----------------------------------------------------------------------------
# Prepare
# ----------------------------------------------------------------------------

HOST_MFGTOOLS_CONF_TOOL	:= cmake
HOST_MFGTOOLS_CONF_OPT := \
	$(HOST_CMAKE_OPT) \
	-DBUILD_DOC=OFF

# vim: syntax=make