diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-05-17 20:06:28 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-05-17 20:06:28 +0200 |
commit | e3bf4de3298ec01cf6d91bc55758b4e605b52b88 (patch) | |
tree | dcec5926d1b496606bf402504f23310bad816c20 /package/multimedia/festival/lexicons | |
parent | ce1ae872aa72547bb291cc9e70adfe1b065cd2a8 (diff) | |
download | buildroot-novena-e3bf4de3298ec01cf6d91bc55758b4e605b52b88.tar.gz buildroot-novena-e3bf4de3298ec01cf6d91bc55758b4e605b52b88.zip |
festival: remove packages
Festival does not build, nobody cared since a long time, and they have
been marked deprecated since quite some time.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/multimedia/festival/lexicons')
-rw-r--r-- | package/multimedia/festival/lexicons/Config.in | 20 | ||||
-rw-r--r-- | package/multimedia/festival/lexicons/festlex.mk | 46 |
2 files changed, 0 insertions, 66 deletions
diff --git a/package/multimedia/festival/lexicons/Config.in b/package/multimedia/festival/lexicons/Config.in deleted file mode 100644 index 6d92883b3..000000000 --- a/package/multimedia/festival/lexicons/Config.in +++ /dev/null @@ -1,20 +0,0 @@ -config BR2_PACKAGE_FESTLEX_CMU - bool "Carnegie Mellon University" - help - Lexicon for the festival text to speech system - - http://festvox.org/packed/festival/latest - -config BR2_PACKAGE_FESTLEX_OALD - bool "Oxford Advanced Learners dictionary" - help - Lexicon for the festival text to speech system - - http://festvox.org/packed/festival/latest - -config BR2_PACKAGE_FESTLEX_POS - bool "POSLEX" - help - Lexicon for the festival text to speech system - - http://festvox.org/packed/festival/latest diff --git a/package/multimedia/festival/lexicons/festlex.mk b/package/multimedia/festival/lexicons/festlex.mk deleted file mode 100644 index 80d37d595..000000000 --- a/package/multimedia/festival/lexicons/festlex.mk +++ /dev/null @@ -1,46 +0,0 @@ -############################################################# -# -# festival lexicons -# -############################################################# -LEX1 = festlex_CMU.tar.gz -LEX2 = festlex_OALD.tar.gz -LEX3 = festlex_POSLEX.tar.gz -FESTLEX_STATUS_DIR = $(BUILD_DIR)/festival_lexicons -FESTLEX_INSTALL_DIR = $(TARGET_DIR)/usr/share - -$(FESTLEX_STATUS_DIR)/.downloaded: - mkdir -p $(FESTLEX_STATUS_DIR) -ifeq ($(BR2_PACKAGE_FESTLEX_CMU),y) - $(call DOWNLOAD,$(FESTIVAL_SITE),$(LEX1)) -endif -ifeq ($(BR2_PACKAGE_FESTLEX_OALD),y) - $(call DOWNLOAD,$(FESTIVAL_SITE),$(LEX2)) -endif -ifeq ($(BR2_PACKAGE_FESTLEX_POS),y) - $(call DOWNLOAD,$(FESTIVAL_SITE),$(LEX3)) -endif - touch $@ - -$(FESTLEX_STATUS_DIR)/.installed: $(FESTLEX_STATUS_DIR)/.downloaded -ifeq ($(BR2_PACKAGE_FESTLEX_CMU),y) - tar -xvf $(DL_DIR)/$(LEX1) --directory $(FESTLEX_INSTALL_DIR) -endif -ifeq ($(BR2_PACKAGE_FESTLEX_OALD),y) - tar -xvf $(DL_DIR)/$(LEX2) --directory $(FESTLEX_INSTALL_DIR) -endif -ifeq ($(BR2_PACKAGE_FESTLEX_POS),y) - tar -xvf $(DL_DIR)/$(LEX3) --directory $(FESTLEX_INSTALL_DIR) -endif - touch $@ - -festlex: $(FESTLEX_STATUS_DIR)/.installed - -############################################################# -# -# Toplevel Makefile options -# -############################################################# -ifeq ($(BR2_PACKAGE_FESTIVAL),y) -TARGETS+=festlex -endif |