mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -09:00
Release notes: https://github.com/savoirfairelinux/cukinia/releases/tag/v0.9.1 Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com> Signed-off-by: Julien Olivain <ju.o@free.fr>
19 lines
571 B
Makefile
19 lines
571 B
Makefile
################################################################################
|
|
#
|
|
# cukinia
|
|
#
|
|
################################################################################
|
|
|
|
CUKINIA_VERSION = 0.9.1
|
|
CUKINIA_SITE = $(call github,savoirfairelinux,cukinia,v$(CUKINIA_VERSION))
|
|
CUKINIA_LICENSE = Apache-2.0
|
|
CUKINIA_LICENSE_FILES = LICENSE
|
|
|
|
define CUKINIA_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0755 $(@D)/cukinia $(TARGET_DIR)/usr/bin/cukinia
|
|
$(INSTALL) -D -m 0644 $(CUKINIA_PKGDIR)/cukinia.conf \
|
|
$(TARGET_DIR)/etc/cukinia/cukinia.conf
|
|
endef
|
|
|
|
$(eval $(generic-package))
|