mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-15 08:13:34 +08:00
e88733af57
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
32 lines
759 B
Makefile
32 lines
759 B
Makefile
#############################################################
|
|
#
|
|
# lame
|
|
#
|
|
#############################################################
|
|
|
|
LAME_VERSION = 3.99
|
|
LAME_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/lame
|
|
LAME_DEPENDENCIES = host-pkg-config
|
|
LAME_INSTALL_STAGING = YES
|
|
LAME_CONF_ENV = GTK_CONFIG=/bin/false
|
|
LAME_CONF_OPT = --enable-dynamic-frontends
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
|
|
LAME_DEPENDENCIES += libsndfile
|
|
LAME_CONF_OPT += --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 $(call AUTOTARGETS))
|