aaffd209fa
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
35 lines
898 B
Makefile
35 lines
898 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_INSTALL_STAGING = YES
|
|
LAME_CONF_ENV = GTK_CONFIG=/bin/false
|
|
LAME_CONF_OPTS = --enable-dynamic-frontends
|
|
LAME_LICENSE = LGPLv2+
|
|
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))
|