Skip to content

Commit

Permalink
android: fix building the espeakdata.zip file
Browse files Browse the repository at this point in the history
  • Loading branch information
rhdunn committed Jan 5, 2017
1 parent e4e572a commit e605399
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile.am
Expand Up @@ -322,12 +322,12 @@ apk-debug:
apk-check:
cd android && $(GRADLE) connectedCheck

android/res/raw/espeakdata.zip: espeak-data/phontab dictionaries
android/res/raw/espeakdata.zip: espeak-ng-data/phontab dictionaries
mkdir -pv android/res/raw
rm -f $@
find espeak-data/{intonations,phondata,phonindex,phontab} | zip -@ $@
find espeak-data/*_dict | zip -@ $@
find espeak-data/voices -type f | grep -vF "/mb/" | zip -@ $@
find espeak-ng-data/{intonations,phondata,phonindex,phontab} | zip -@ $@
find espeak-ng-data/*_dict | zip -@ $@
find espeak-ng-data/voices -type f | grep -vF "/mb/" | zip -@ $@

android/res/raw/espeakdata_version: android/res/raw/espeakdata.zip
sha1sum $< | awk '{ print $$1 }' > $@
Expand Down

0 comments on commit e605399

Please sign in to comment.