Browse Source

Don't check in espeakdata.zip to version control every time it changes.

The espeakdata.zip file is a generated file that can be recreated
by running the `make android` command. It takes up ~ 900 Kb of space
and changes significantly every time it is built.
master
Reece H. Dunn 12 years ago
parent
commit
932907ddc6
5 changed files with 14 additions and 12 deletions
  1. 3
    0
      .gitignore
  2. 1
    0
      Makefile.am
  3. 10
    11
      README.md
  4. BIN
      android/res/raw/espeakdata.zip
  5. 0
    1
      android/res/raw/espeakdata_version

+ 3
- 0
.gitignore View File

@@ -15,6 +15,9 @@ android/icons/*.png

libttsespeak.so

android/res/raw/espeakdata.zip
android/res/raw/espeakdata_version

# autotools

AUTHORS

+ 1
- 0
Makefile.am View File

@@ -126,6 +126,7 @@ espeak-data/phontab: src/espeakedit espeak-data/dir.stamp espeak-data/dictsource
##### android language data packs:

android/res/raw/espeakdata.zip: espeak-data/dir.stamp espeak-data/phontab dictionaries
mkdir -pv android/res/raw
rm -f $@
find espeak-data/{intonations,phondata,phonindex,phontab} | zip -@ $@
find espeak-data/*_dict | zip -@ $@

+ 10
- 11
README.md View File

@@ -12,7 +12,7 @@ configured correctly:
2. Android NDK
3. Eclipse
4. Android Developer Tools (ADT) for Eclipse
5. wxWidgets 2.8 (for espeakedit if building the `espeak-data` zip files)
5. wxWidgets 2.8 (for espeakedit when building `android/res/raw/espeakdata.zip`)

## Fetching the Sources

@@ -27,16 +27,15 @@ The Android port uses the `ucd-tools` submodule. You can fetch this by running:

$ cd android
$ ndk-build
2. Open Eclipse.
3. Create a new workspace.
4. Import the espeak folder as an exising Android project.
5. Build the espeak apk within Eclipse.

In order to build the `espeakdata.zip` file in `android/res/raw`, you need to run the following commands:

$ ./autogen.sh
$ ./configure --prefix=/usr
$ make android
2. Build the `android/res/raw/espeakdata.zip` file by running:

$ ./autogen.sh
$ ./configure --prefix=/usr
$ make android
3. Open Eclipse.
4. Create a new workspace.
5. Import the espeak folder as an exising Android project.
6. Build the espeak apk within Eclipse.

## Installing


BIN
android/res/raw/espeakdata.zip View File


+ 0
- 1
android/res/raw/espeakdata_version View File

@@ -1 +0,0 @@
15d5f6a94bb1ee0da076b7c653173c03df365f40

Loading…
Cancel
Save