af31c309e7
We want to use SPDX identifier for license strings as much as possible. SPDX short identifier for GPLv2/GPLv2+ is GPL-2.0/GPL-2.0+. This change is done by using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv2\>/GPL-2.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
35 lines
860 B
Makefile
35 lines
860 B
Makefile
################################################################################
|
|
#
|
|
# nodm
|
|
#
|
|
################################################################################
|
|
|
|
NODM_VERSION = 0.12-1
|
|
NODM_SITE = $(call github,spanezz,nodm,debian/$(NODM_VERSION))
|
|
NODM_LICENSE = GPL-2.0+
|
|
NODM_LICENSE_FILES = COPYING
|
|
NODM_AUTORECONF = YES
|
|
|
|
NODM_DEPENDENCIES = xlib_libX11 linux-pam
|
|
|
|
# help2man doesn't work when cross compiling
|
|
define NODM_DISABLE_HELP2MAN
|
|
$(SED) 's/help2man/true/' $(@D)/Makefile.am
|
|
endef
|
|
|
|
NODM_POST_PATCH_HOOKS += NODM_DISABLE_HELP2MAN
|
|
|
|
define NODM_INSTALL_PAM
|
|
$(INSTALL) -D -m 0644 package/nodm/nodm.pam \
|
|
$(TARGET_DIR)/etc/pam.d/nodm
|
|
endef
|
|
|
|
NODM_POST_INSTALL_TARGET_HOOKS += NODM_INSTALL_PAM
|
|
|
|
define NODM_INSTALL_INIT_SYSV
|
|
$(INSTALL) -D -m 0755 package/nodm/S90nodm \
|
|
$(TARGET_DIR)/etc/init.d/S90nodm
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|