mirror of https://github.com/OpenIPC/firmware.git
23 lines
777 B
Makefile
23 lines
777 B
Makefile
################################################################################
|
|
#
|
|
# majestic-xm510
|
|
#
|
|
################################################################################
|
|
|
|
MAJESTIC_XM510_VERSION = current
|
|
MAJESTIC_XM510_SOURCE = majestic.xm510.lite.master.tar.bz2
|
|
MAJESTIC_XM510_SITE = https://openipc.s3-eu-west-1.amazonaws.com
|
|
MAJESTIC_XM510_LICENSE = MIT
|
|
MAJESTIC_XM510_LICENSE_FILES = LICENSE
|
|
|
|
define MAJESTIC_XM510_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 755 -d $(TARGET_DIR)/etc
|
|
$(INSTALL) -m 644 $(@D)/majestic-mini.yaml $(TARGET_DIR)/etc/majestic.yaml
|
|
$(INSTALL) -m 644 $(@D)/majestic.yaml $(TARGET_DIR)/etc/majestic.full
|
|
|
|
$(INSTALL) -m 755 -d $(TARGET_DIR)/usr/bin
|
|
$(INSTALL) -m 755 -t $(TARGET_DIR)/usr/bin $(@D)/majestic
|
|
endef
|
|
|
|
$(eval $(generic-package))
|