mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
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>
27 lines
698 B
Makefile
27 lines
698 B
Makefile
################################################################################
|
|
#
|
|
# libcddb
|
|
#
|
|
################################################################################
|
|
|
|
LIBCDDB_VERSION = 1.3.2
|
|
LIBCDDB_SOURCE = libcddb-$(LIBCDDB_VERSION).tar.bz2
|
|
LIBCDDB_SITE = http://downloads.sourceforge.net/libcddb
|
|
LIBCDDB_LICENSE = LGPL-2.0+
|
|
LIBCDDB_LICENSE_FILES = COPYING
|
|
LIBCDDB_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_ENABLE_LOCALE),)
|
|
LIBCDDB_DEPENDENCIES += libiconv
|
|
endif
|
|
|
|
define LIBCDDB_REMOVE_CDDB_QUERY
|
|
rm -f $(TARGET_DIR)/usr/bin/cddb_query
|
|
endef
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCDDB_INSTALL_CDDB_QUERY),)
|
|
LIBCDDB_POST_INSTALL_TARGET_HOOKS += LIBCDDB_REMOVE_CDDB_QUERY
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|