2013-06-06 07:53:30 +08:00
|
|
|
################################################################################
|
2011-02-11 01:58:13 +08:00
|
|
|
#
|
|
|
|
# lame
|
|
|
|
#
|
2013-06-06 07:53:30 +08:00
|
|
|
################################################################################
|
2011-02-11 01:58:13 +08:00
|
|
|
|
2012-04-21 11:31:35 +08:00
|
|
|
LAME_VERSION_MAJOR = 3.99
|
|
|
|
LAME_VERSION_MINOR = 5
|
|
|
|
LAME_VERSION = $(LAME_VERSION_MAJOR).$(LAME_VERSION_MINOR)
|
2012-08-26 07:52:48 +08:00
|
|
|
LAME_SITE = http://downloads.sourceforge.net/project/lame/lame/$(LAME_VERSION_MAJOR)
|
2012-10-22 23:47:52 +08:00
|
|
|
LAME_DEPENDENCIES = host-pkgconf
|
2011-02-11 01:58:13 +08:00
|
|
|
LAME_INSTALL_STAGING = YES
|
2011-07-05 20:58:20 +08:00
|
|
|
LAME_CONF_ENV = GTK_CONFIG=/bin/false
|
2011-11-14 06:27:49 +08:00
|
|
|
LAME_CONF_OPT = --enable-dynamic-frontends
|
2013-01-21 19:29:50 +08:00
|
|
|
LAME_LICENSE = LGPLv2+
|
|
|
|
LAME_LICENSE_FILES = COPYING
|
2011-02-11 01:58:13 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2012-07-03 06:07:32 +08:00
|
|
|
$(eval $(autotools-package))
|