Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deinhofer/#324 rpi4 install problem #330

Merged
merged 9 commits into from
Apr 23, 2020
8 changes: 7 additions & 1 deletion Documentation/docs/plugins/actuators/PicoTTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ picoTTS plugin

**Linux environment only!**
Please install the pico2wave binary with following command (on Debian/Ubuntu based platforms):
_"sudo apt install libttspico-utils"_

```bash
sudo apt install libttspico-utils
```

On Raspbian Buster (RPi4) the package is not available in the standard repository. You have to enable the non-free repository first, see explanation [here](https://bugs.launchpad.net/raspbian/+bug/1835974).

If this plugin is not working (no speech output), please ensure, that the _aplay_ command is available.

## Input Port Description
Expand Down
14 changes: 10 additions & 4 deletions Installer/asterics-are/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,25 @@ If you freshly checkout AsTeRICS, the version string in ```APE.properties``` and
To create a .deb installer call:

```bash
VERSION=<version string> ; ant deploy -Dfx.deploy.nativeBundles=deb -Dfx.application.version=$VERSION
VERSION=<version string>; ant deploy -Dfx.deploy.nativeBundles=deb -Dfx.application.version=$VERSION
```

## Mac OSX

```bash
VERSION=<version string> ; ant deploy -Dfx.deploy.nativeBundles=dmg -DAPE.embedJava=true -Dfx.application.version=$VERSION
VERSION=<version string>; ant deploy -Dfx.deploy.nativeBundles=dmg -DAPE.embedJava=true -Dfx.application.version=$VERSION
```

or if you want to specify the Java version that should be used for embedding add the ```-Dfx.application.version``` parameter:
or if you want to specify the Java version that should be used for embedding add the ```-Dfx.platform.basedir=<path to JRE Home>``` parameter:

```bash
VERSION=<version string> ; ant deploy -Dfx.deploy.nativeBundles=dmg -DAPE.embedJava=true -Dfx.application.version=$VERSION -Dfx.platform.basedir=<path to JRE Home>
VERSION=<version string>; ant deploy -Dfx.deploy.nativeBundles=dmg -DAPE.embedJava=true -Dfx.application.version=$VERSION -Dfx.platform.basedir=<path to JRE Home>
```

## Troubleshooting

If the installer creation fails, you should turn on verbose mode to get some hint about the problem. You must add the following parameter to the commandline:

```
-Dfx.deploy.verbose=true
```
14 changes: 8 additions & 6 deletions Installer/asterics-are/package/linux/control
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
Package: asterics-are
Version: #{APPLICATION_VERSION_NUMBER}#
Section: unknown
Maintainer: Asterics Foundation
Section: utils
Maintainer: AsTeRICS Foundation
Priority: optional
Architecture: all
Homepage: https://github.com/asterics/AsTeRICS
License: MIT or GPL-3 with Classpath exception
Homepage: https://www.asterics.eu
Provides: asterics-are
Description: AsTeRICS Runtime Environment (ARE) - http://www.asterics.org
Recommends: oracle-java8-installer
Depends: libttspico-utils, libhidapi-libusb0, libudev1, xdg-utils
Description: AsTeRICS Runtime Environment (ARE) - http://www.asterics.eu
Recommends: oracle-java8-installer, libttspico-utils
Depends: libhidapi-libusb0, libudev1, xdg-utils

Loading