Browse Source

Initialize the git submodules when autogen.sh is run.

master
Reece H. Dunn 12 years ago
parent
commit
106a12a1a7
2 changed files with 7 additions and 8 deletions
  1. 3
    8
      README.md
  2. 4
    0
      autogen.sh

+ 3
- 8
README.md View File



1. ant (e.g. run `sudo apt-get install ant` on a Debian-based distribution) 1. ant (e.g. run `sudo apt-get install ant` on a Debian-based distribution)


## Fetching the Sources

The Android port uses the `ucd-tools` submodule. You can fetch this by running:

$ git submodule init
$ git submodule update

## Building eSpeak ## Building eSpeak


1. Generate the build files and get the required git submodules by running:

$ ./autogen.sh
1. Build the `libttsespeak.so` file by running: 1. Build the `libttsespeak.so` file by running:


$ cd android $ cd android
$ ndk-build $ ndk-build
2. Build the `android/res/raw/espeakdata.zip` file by running: 2. Build the `android/res/raw/espeakdata.zip` file by running:


$ ./autogen.sh
$ ./configure --prefix=/usr $ ./configure --prefix=/usr
$ make android $ make android



+ 4
- 0
autogen.sh View File

touch NEWS touch NEWS
ln -sv README.md README ln -sv README.md README


if [ -d .git ] ; then
git submodule update --init --recursive || exit 1
fi

aclocal -I m4 || exit 1 aclocal -I m4 || exit 1


libtoolize || exit 1 libtoolize || exit 1

Loading…
Cancel
Save