9254f02266
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2/LGPLv2+ is LGPL-2.0/LGPL-2.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2(\+)?/LGPL-2.0\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
19 lines
709 B
Makefile
19 lines
709 B
Makefile
################################################################################
|
|
#
|
|
# startup-notification
|
|
#
|
|
################################################################################
|
|
|
|
STARTUP_NOTIFICATION_VERSION = 0.9
|
|
STARTUP_NOTIFICATION_SITE = http://freedesktop.org/software/startup-notification/releases
|
|
STARTUP_NOTIFICATION_INSTALL_STAGING = YES
|
|
STARTUP_NOTIFICATION_DEPENDENCIES = xlib_libX11
|
|
STARTUP_NOTIFICATION_CONF_ENV = lf_cv_sane_realloc=yes
|
|
STARTUP_NOTIFICATION_CONF_OPTS = --with-x \
|
|
--x-includes="$(STAGING_DIR)/usr/include/X11" \
|
|
--x-libraries="$(STAGING_DIR)/usr/lib"
|
|
STARTUP_NOTIFICATION_LICENSE = LGPL-2.0
|
|
STARTUP_NOTIFICATION_LICENSE_FILES = COPYING
|
|
|
|
$(eval $(autotools-package))
|