You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
620 B
27 lines
620 B
4 years ago
|
################################################################################
|
||
|
#
|
||
|
# flac
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
FLAC_VERSION = 1.3.3
|
||
|
FLAC_DIR = flac-$(FLAC_VERSION)
|
||
|
FLAC_SOURCE = flac-$(FLAC_VERSION).tar.xz
|
||
|
FLAC_SITE = http://downloads.xiph.org/releases/flac
|
||
|
|
||
|
FLAC_AUTORECONF = YES
|
||
|
|
||
|
FLAC_CONF_OPTS = \
|
||
|
--bindir=$(REMOVE_bindir) \
|
||
|
--datarootdir=$(REMOVE_datarootdir) \
|
||
|
--enable-shared \
|
||
|
--disable-static \
|
||
|
--disable-cpplibs \
|
||
|
--disable-xmms-plugin \
|
||
|
--disable-altivec \
|
||
|
--disable-ogg \
|
||
|
--disable-sse
|
||
|
|
||
|
flac: | $(TARGET_DIR)
|
||
|
$(call autotools-package)
|