2009-02-20 14:02:13 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# flac
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
FLAC_VERSION = 1.2.1
|
2012-08-26 01:52:48 +02:00
|
|
|
FLAC_SITE = http://downloads.sourceforge.net/project/flac/flac-src/flac-$(FLAC_VERSION)-src
|
2009-02-20 14:02:13 +01:00
|
|
|
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
|
|
|
|
|
2012-07-03 00:07:32 +02:00
|
|
|
$(eval $(autotools-package))
|