9791ae2a49
[Thomas: rewrap Config.in help text, and use proper format for wchar comment according to the Buildroot manual.] Signed-off-by: Samuel Martin <s.martin49@gmail.com> Cc: Eric Jarrige <eric.jarrige@armadeus.org> Cc: Julien Boibessot <julien.boibessot@armadeus.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
################################################################################
|
|
#
|
|
# flite
|
|
#
|
|
################################################################################
|
|
|
|
FLITE_VERSION = 1.4
|
|
FLITE_SOURCE = flite-$(FLITE_VERSION)-release.tar.bz2
|
|
FLITE_SITE = http://www.speech.cs.cmu.edu/flite/packed/flite-$(FLITE_VERSION)
|
|
FLITE_LICENSE = BSD-4c
|
|
FLITE_LICENSE_FILES = COPYING
|
|
|
|
FLITE_INSTALL_STAGING = YES
|
|
|
|
# Sadly, Flite does not support parallel build, especially when building its
|
|
# shared libraries.
|
|
FLITE_MAKE = $(MAKE1)
|
|
|
|
# $ tar tf flite-1.4-release.tar.bz2
|
|
# ...
|
|
# flite-1.4-release//install-sh
|
|
# flite-1.4-release//mkinstalldirs
|
|
# flite-1.4-release//Exports.def
|
|
# flite-1.4-release//flite.sln
|
|
# flite-1.4-release//fliteDll.vcproj
|
|
# flite-1.4-release/config/Makefile
|
|
# flite-1.4-release/config/common_make_rules
|
|
# flite-1.4-release/config/project.mak
|
|
# flite-1.4-release/config/config.in
|
|
# flite-1.4-release/config/system.mak.in
|
|
#
|
|
# So, the strip-component trick does not work at all.
|
|
# Let's redefine the extract command.
|
|
define FLITE_EXTRACT_CMDS
|
|
$(INFLATE$(suffix $(FLITE_SOURCE))) $(DL_DIR)/$(FLITE_SOURCE) | \
|
|
$(TAR) -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
rsync -ar $(BUILD_DIR)/$(subst .tar.bz2,,$(FLITE_SOURCE))/* $(FLITE_DIR)/
|
|
$(RM) -rf $(BUILD_DIR)/$(subst .tar.bz2,,$(FLITE_SOURCE))
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|