96e9480fbc
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for BSD-2c is BSD-2-Clause. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/BSD-2c/BSD-2-Clause/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
25 lines
721 B
Makefile
25 lines
721 B
Makefile
################################################################################
|
|
#
|
|
# expedite
|
|
#
|
|
################################################################################
|
|
|
|
EXPEDITE_VERSION = ffa005ea3de26b4219f32c285cb1665bb1366163
|
|
EXPEDITE_SITE = http://git.enlightenment.org/tools/expedite.git
|
|
EXPEDITE_SITE_METHOD = git
|
|
EXPEDITE_LICENSE = BSD-2-Clause
|
|
EXPEDITE_LICENSE_FILES = COPYING
|
|
|
|
EXPEDITE_DEPENDENCIES = host-efl host-pkgconf efl
|
|
|
|
# There is no configure script in the git tree.
|
|
EXPEDITE_AUTORECONF = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_EFL_X_XLIB),y)
|
|
EXPEDITE_CONF_OPTS += --with-x=$(STAGING_DIR) \
|
|
--x-includes=$(STAGING_DIR)/usr/include \
|
|
--x-libraries=$(STAGING_DIR)/usr/lib
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|