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>
20 lines
641 B
Makefile
20 lines
641 B
Makefile
################################################################################
|
|
#
|
|
# boa
|
|
#
|
|
################################################################################
|
|
|
|
BOA_VERSION = 0.94.14rc21
|
|
BOA_SITE = http://www.boa.org
|
|
BOA_LICENSE = GPL-2.0+
|
|
BOA_LICENSE_FILES = COPYING
|
|
|
|
define BOA_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 755 $(@D)/src/boa $(TARGET_DIR)/usr/sbin/boa
|
|
$(INSTALL) -D -m 755 $(@D)/src/boa_indexer $(TARGET_DIR)/usr/lib/boa/boa_indexer
|
|
$(INSTALL) -D -m 644 package/boa/boa.conf $(TARGET_DIR)/etc/boa/boa.conf
|
|
$(INSTALL) -D -m 644 package/boa/mime.types $(TARGET_DIR)/etc/mime.types
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|