30a3e8d108
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for LGPLv2.1/LGPLv2.1+ is LGPL-2.1/LGPL-2.1+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/LGPLv2.1(\+)?/LGPL-2.1\1/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
32 lines
918 B
Makefile
32 lines
918 B
Makefile
################################################################################
|
|
#
|
|
# libbdplus
|
|
#
|
|
################################################################################
|
|
|
|
LIBBDPLUS_VERSION = 0.1.2
|
|
LIBBDPLUS_SITE = http://download.videolan.org/pub/videolan/libbdplus/$(LIBBDPLUS_VERSION)
|
|
LIBBDPLUS_SOURCE = libbdplus-$(LIBBDPLUS_VERSION).tar.bz2
|
|
LIBBDPLUS_LICENSE = LGPL-2.1+
|
|
LIBBDPLUS_LICENSE_FILES = COPYING
|
|
LIBBDPLUS_INSTALL_STAGING = YES
|
|
LIBBDPLUS_DEPENDENCIES = libgcrypt
|
|
LIBBDPLUS_CONF_OPTS = \
|
|
--disable-werror \
|
|
--disable-extra-warnings \
|
|
--disable-optimizations \
|
|
--disable-examples \
|
|
--disable-debug \
|
|
--with-gnu-ld \
|
|
--with-libgcrypt-prefix=$(STAGING_DIR)/usr \
|
|
--with-gpg-error-prefix=$(STAGING_DIR)/usr
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBAACS),y)
|
|
LIBBDPLUS_DEPENDENCIES += libaacs
|
|
LIBBDPLUS_CONF_OPTS += --with-libaacs
|
|
else
|
|
LIBBDPLUS_CONF_OPTS += --without-libaacs
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|