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>
20 lines
767 B
Makefile
20 lines
767 B
Makefile
################################################################################
|
|
#
|
|
# libbroadvoice
|
|
#
|
|
################################################################################
|
|
|
|
LIBBROADVOICE_VERSION = f65b0f50c8c767229fbf1758370880abc0d78564
|
|
# we use the FreeSwitch fork because (quoting README):
|
|
# "This library is based on the Broadcom reference code, but has been
|
|
# heavily modified so that it builds into a proper library, with a clean
|
|
# usable interface, on a range of platforms."
|
|
LIBBROADVOICE_SITE = https://freeswitch.org/stash/scm/sd/libbroadvoice.git
|
|
LIBBROADVOICE_SITE_METHOD = git
|
|
LIBBROADVOICE_LICENSE = LGPL-2.1
|
|
LIBBROADVOICE_LICENSE_FILES = COPYING
|
|
LIBBROADVOICE_AUTORECONF = YES
|
|
LIBBROADVOICE_INSTALL_STAGING = YES
|
|
|
|
$(eval $(autotools-package))
|