mirror of https://github.com/OpenIPC/firmware.git
23 lines
650 B
Makefile
23 lines
650 B
Makefile
################################################################################
|
|
#
|
|
# microsnander
|
|
#
|
|
################################################################################
|
|
|
|
MICROSNANDER_SITE_METHOD = git
|
|
MICROSNANDER_SITE = https://github.com/openipc/microsnander
|
|
MICROSNANDER_VERSION = $(call EXTERNAL_SHA,$(MICROSNANDER_SITE),HEAD)
|
|
|
|
MICROSNANDER_LICENSE = MIT
|
|
MICROSNANDER_LICENSE_FILES = LICENSE
|
|
|
|
define MICROSNANDER_BUILD_CMDS
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)/src
|
|
endef
|
|
|
|
define MICROSNANDER_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 0755 -D $(@D)/src/microsnander $(TARGET_DIR)/usr/sbin/microsnander
|
|
endef
|
|
|
|
$(eval $(generic-package))
|