af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
855 B
Makefile
25 lines
855 B
Makefile
################################################################################
|
|
#
|
|
# axfsutils
|
|
#
|
|
################################################################################
|
|
|
|
AXFSUTILS_VERSION = 64886703fdff6cfc64eb20fbe7d7295bbeec867b
|
|
AXFSUTILS_SITE = $(call github,jaredeh,axfs,$(AXFSUTILS_VERSION))
|
|
AXFSUTILS_LICENSE = GPL-2.0
|
|
AXFSUTILS_LICENSE_FILES = mkfs.axfs-legacy/COPYING
|
|
HOST_AXFSUTILS_DEPENDENCIES = host-zlib
|
|
|
|
# The 'new' mkfs.axfs version requires GNUstep which is not a buildroot
|
|
# prerequisite. The 'legacy' one works just as well without that requirement.
|
|
define HOST_AXFSUTILS_BUILD_CMDS
|
|
$(HOST_MAKE_ENV) $(HOST_CONFIGURE_OPTS) $(MAKE) -C $(@D)/mkfs.axfs-legacy
|
|
endef
|
|
|
|
define HOST_AXFSUTILS_INSTALL_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/mkfs.axfs-legacy/mkfs.axfs \
|
|
$(HOST_DIR)/usr/bin/mkfs.axfs
|
|
endef
|
|
|
|
$(eval $(host-generic-package))
|