The tag we currently use no longer exists in the upstream repository, as
the history has ben "rewritten":
https://github.com/drowe67/codec2/issues/5
Bump to the latest (and only) tag in the new repository.
Release notes: https://github.com/drowe67/codec2/releases/tag/1.2.0
Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
[yann.morin.1998@free.fr: explain about missing tag]
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
20 lines
566 B
Makefile
20 lines
566 B
Makefile
################################################################################
|
|
#
|
|
# libcodec2
|
|
#
|
|
################################################################################
|
|
|
|
LIBCODEC2_VERSION = 1.2.0
|
|
LIBCODEC2_SITE = $(call github,drowe67,codec2,$(LIBCODEC2_VERSION))
|
|
LIBCODEC2_LICENSE = LGPL-2.1
|
|
LIBCODEC2_LICENSE_FILES = COPYING
|
|
LIBCODEC2_INSTALL_STAGING = YES
|
|
LIBCODEC2_SUPPORTS_IN_SOURCE_BUILD = NO
|
|
LIBCODEC2_CONF_OPTS = -DUNITTEST=OFF
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBCODEC2_EXAMPLES),y)
|
|
LIBCODEC2_CONF_OPTS += -DINSTALL_EXAMPLES=ON
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|