2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2011-02-10 18:58:13 +01:00
|
|
|
#
|
|
|
|
# lame
|
|
|
|
#
|
2013-06-06 01:53:30 +02:00
|
|
|
################################################################################
|
2011-02-10 18:58:13 +01:00
|
|
|
|
2012-04-21 05:31:35 +02:00
|
|
|
LAME_VERSION_MAJOR = 3.99
|
2014-03-17 09:06:41 +01:00
|
|
|
LAME_VERSION = $(LAME_VERSION_MAJOR).5
|
2012-08-26 01:52:48 +02:00
|
|
|
LAME_SITE = http://downloads.sourceforge.net/project/lame/lame/$(LAME_VERSION_MAJOR)
|
2012-10-22 17:47:52 +02:00
|
|
|
LAME_DEPENDENCIES = host-pkgconf
|
2015-04-11 11:57:36 +02:00
|
|
|
LAME_AUTORECONF = YES
|
2011-02-10 18:58:13 +01:00
|
|
|
LAME_INSTALL_STAGING = YES
|
2011-07-05 14:58:20 +02:00
|
|
|
LAME_CONF_ENV = GTK_CONFIG=/bin/false
|
2014-09-27 21:32:44 +02:00
|
|
|
LAME_CONF_OPTS = --enable-dynamic-frontends
|
2013-01-21 12:29:50 +01:00
|
|
|
LAME_LICENSE = LGPLv2+
|
|
|
|
LAME_LICENSE_FILES = COPYING
|
2011-02-10 18:58:13 +01:00
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBSNDFILE),y)
|
|
|
|
LAME_DEPENDENCIES += libsndfile
|
2014-09-27 21:32:44 +02:00
|
|
|
LAME_CONF_OPTS += --with-fileio=sndfile
|
2011-02-10 18:58:13 +01:00
|
|
|
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 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|