[Buildroot] [PATCH] mimic: new package

Peter Korsgaard peter at korsgaard.com
Sun Dec 11 10:02:43 UTC 2016


>>>>> "Ezequiel" == Ezequiel Garcia <ezequiel at vanguardiasur.com.ar> writes:

Hi,

 > +config BR2_PACKAGE_MIMIC
 > +	bool "mimic"
 > +        help
 > +          Mimic is a fast, lightweight Text-to-speech engine developed by
 > +          Mycroft A.I. and VocaliD, based on Carnegie Mellon University's
 > +          Flite (Festival-Lite) software. Mimic takes in text and reads it
 > +          out loud to create a high quality voice.

Heh, "lightweight" - The tarball is more than 400MB!

> +################################################################################
 > +#
 > +# mimic
 > +#
 > +################################################################################
 > +
 > +MIMIC_VERSION = 1.1.0
 > +MIMIC_SITE = $(call github,MycroftAI,mimic,$(MIMIC_VERSION))
 > +MIMIC_INSTALL_STAGING = NO
 > +MIMIC_LICENSE = MIT
 > +MIMIC_LICENSE_FILES = LICENSE
 > +
 > +MIMIC_DEPENDENCIES = host-pkgconf
 > +
 > +ifeq ($(BR2_PACKAGE_MIMIC_AUDIO_BACKEND_ALSA),y)
 > +MIMIC_AUDIO_BACKEND = alsa
 > +MIMIC_DEPENDENCIES = alsa-lib
 > +else ifeq ($(BR2_PACKAGE_MIMIC_AUDIO_BACKEND_PORTAUDIO),y)
 > +MIMIC_AUDIO_BACKEND = portaudio
 > +MIMIC_DEPENDENCIES = portaudio
 > +else ifeq ($(BR2_PACKAGE_MIMIC_AUDIO_BACKEND_PULSEAUDIO),y)
 > +MIMIC_AUDIO_BACKEND = pulseaudio
 > +MIMIC_DEPENDENCIES = pulseaudio

configure.ac uses PKG_CHECK_MODULES to detect these, so we should depend
on host-pkgconf - I've fixed that in git.

-- 
Bye, Peter Korsgaard



More information about the buildroot mailing list