0e2e7c71d0
Signed-off-by: Jerzy Grzegorek <jerzy.grzegorek@trzebnica.net> Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com) Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
23 lines
555 B
Makefile
23 lines
555 B
Makefile
################################################################################
|
|
#
|
|
# flac
|
|
#
|
|
################################################################################
|
|
|
|
FLAC_VERSION = 1.2.1
|
|
FLAC_SITE = http://downloads.sourceforge.net/project/flac/flac-src/flac-$(FLAC_VERSION)-src
|
|
FLAC_INSTALL_STAGING = YES
|
|
|
|
FLAC_CONF_OPT = \
|
|
--disable-cpplibs \
|
|
--disable-xmms-plugin
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBOGG),y)
|
|
FLAC_CONF_OPT += --with-ogg=$(STAGING_DIR)/usr
|
|
FLAC_DEPENDENCIES = libogg
|
|
else
|
|
FLAC_CONF_OPT += --disable-ogg
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|