720552dd28
Fixes: http://autobuild.buildroot.net/results/441/441afa17dfd6f259642526850d92f1c9965d8353/ The license file is called LICENSE, not COPYING. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
24 lines
613 B
Makefile
Executable File
24 lines
613 B
Makefile
Executable File
################################################################################
|
|
#
|
|
# nvme
|
|
#
|
|
################################################################################
|
|
|
|
NVME_VERSION = v0.3
|
|
NVME_SITE = $(call github,linux-nvme,nvme-cli,$(NVME_VERSION))
|
|
NVME_LICENSE = GPLv2+
|
|
NVME_LICENSE_FILES = LICENSE
|
|
|
|
# LIBUDEV=1 means that libudev is _disabled_
|
|
define NVME_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(TARGET_CONFIGURE_OPTS) $(MAKE) \
|
|
LIBUDEV=1 -C $(@D)
|
|
endef
|
|
|
|
define NVME_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D) DESTDIR=$(TARGET_DIR) \
|
|
PREFIX=/usr install-bin
|
|
endef
|
|
|
|
$(eval $(generic-package))
|