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>
36 lines
922 B
Makefile
36 lines
922 B
Makefile
################################################################################
|
|
#
|
|
# lame
|
|
#
|
|
################################################################################
|
|
|
|
LAME_VERSION_MAJOR = 3.99
|
|
LAME_VERSION = $(LAME_VERSION_MAJOR).5
|
|
LAME_SITE = http://downloads.sourceforge.net/project/lame/lame/$(LAME_VERSION_MAJOR)
|
|
LAME_DEPENDENCIES = host-pkgconf
|
|
LAME_AUTORECONF = YES
|
|
LAME_INSTALL_STAGING = YES
|
|
LAME_CONF_ENV = GTK_CONFIG=/bin/false
|
|
LAME_CONF_OPTS = --enable-dynamic-frontends
|
|
LAME_LICENSE = LGPL-2.0+
|
|
LAME_LICENSE_FILES = COPYING
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
|
|
LAME_DEPENDENCIES += libsndfile
|
|
LAME_CONF_OPTS += --with-fileio=sndfile
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NCURSES),y)
|
|
LAME_DEPENDENCIES += ncurses
|
|
endif
|
|
|
|
ifeq ($(BR2_ENDIAN),"BIG")
|
|
define LAME_BIGENDIAN_ARCH
|
|
echo "#define WORDS_BIGENDIAN 1" >>$(@D)/config.h
|
|
endef
|
|
endif
|
|
|
|
LAME_POST_CONFIGURE_HOOKS += LAME_BIGENDIAN_ARCH
|
|
|
|
$(eval $(autotools-package))
|