Difference between revisions of "Flite"
From CBLFS
Jump to navigationJump to search (→Introduction to flite) |
|||
Line 9: | Line 9: | ||
== Introduction to Flite == | == Introduction to Flite == | ||
− | + | Flite contains Text-To-speech engine for english users. | |
+ | |||
+ | == Dependencies == | ||
+ | |||
+ | === Optional === | ||
+ | * [[ALSA]] | ||
+ | |||
+ | == Configuration Information == | ||
+ | |||
+ | The following will build support for [[ALSA]] instead of OSS: | ||
+ | |||
+ | --with-audio=alsa | ||
== Non-Multilib == | == Non-Multilib == |
Revision as of 09:26, 16 December 2006
Download Source: | http://www.speech.cs.cmu.edu/flite/packed/flite-1.3/flite-1.3-release.tar.gz |
---|
Contents
Introduction to Flite
Flite contains Text-To-speech engine for english users.
Dependencies
Optional
Configuration Information
The following will build support for ALSA instead of OSS:
--with-audio=alsa
Non-Multilib
Compile the package:
./configure --prefix=/usr && sed -i 's/@ $(MAKE) -C lib/#/' Makefile && make
Install the package
make install
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" ./configure --prefix=/usr --host=${CLFS_TARGET32} && sed -i 's/@ $(MAKE) -C lib/#/' Makefile && make
Install the package
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" ./configure --prefix=/usr --libdir=/usr/lib32 && sed -i 's/@ $(MAKE) -C lib/#/' Makefile && make
Install the package
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" ./configure --prefix=/usr --libdir=/usr/lib64 && sed -i 's/@ $(MAKE) -C lib/#/' Makefile && make
Install the package
make install