9a3ee648d6
The aoetools are programs for users of the ATA over Ethernet (AoE) network storage protocol, a simple protocol for using storage over an ethernet LAN. Tested on Beaglebone Black. Build tested with test-pkg. Signed-off-by: Sergio Prado <sergio.prado@e-labworks.com> [Thomas: - fix check-package warnings - use SPDX license code, GPL-2.0 - use github helper - pass TARGET_CONFIGURE_OPTS instead of just CC] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
22 lines
575 B
Makefile
22 lines
575 B
Makefile
################################################################################
|
|
#
|
|
# aoetools
|
|
#
|
|
################################################################################
|
|
|
|
AOETOOLS_VERSION = 37
|
|
AOETOOLS_SITE = $(call github,OpenAoE,aoetools,aoetools-$(AOETOOLS_VERSION))
|
|
AOETOOLS_LICENSE = GPL-2.0
|
|
AOETOOLS_LICENSE_FILES = COPYING
|
|
|
|
define AOETOOLS_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
|
|
endef
|
|
|
|
define AOETOOLS_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) DESTDIR=$(TARGET_DIR) \
|
|
-C $(@D) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|