604c858c22
- Update site to get latest version
- First patch is not needed since
e7e4868ad7
- Update second patch
- Drop third patch (not needed anymore)
- Update hash of COPYING:
- BSD-2-Clause for Palm source code removed
- Add SUN Microsystems license for g72x files
- Add Apache-2.0 for lang/cmu_grapheme_lex/grapheme_unitran_tables.c
- Update indentation of hash file (two spaces)
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
30 lines
789 B
Makefile
30 lines
789 B
Makefile
################################################################################
|
|
#
|
|
# flite
|
|
#
|
|
################################################################################
|
|
|
|
FLITE_VERSION = 2.1
|
|
FLITE_SOURCE = flite-$(FLITE_VERSION)-release.tar.bz2
|
|
FLITE_SITE = http://www.festvox.org/flite/packed/flite-$(FLITE_VERSION)
|
|
FLITE_LICENSE = BSD-4-Clause
|
|
FLITE_LICENSE_FILES = COPYING
|
|
|
|
FLITE_INSTALL_STAGING = YES
|
|
# Patching configure.in
|
|
FLITE_AUTORECONF = YES
|
|
FLITE_DEPENDENCIES = host-pkgconf
|
|
|
|
# Sadly, Flite does not support parallel build, especially when building its
|
|
# shared libraries.
|
|
FLITE_MAKE = $(MAKE1)
|
|
|
|
ifeq ($(BR2_PACKAGE_ALSA_LIB),y)
|
|
FLITE_DEPENDENCIES += alsa-lib
|
|
FLITE_CONF_OPTS += --with-audio=alsa
|
|
else
|
|
FLITE_CONF_OPTS += --with-audio=oss
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|