51 lines
1.7 KiB
Bash
51 lines
1.7 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/espeak-ng/espeak-ng
|
|
TERMUX_PKG_DESCRIPTION="Compact software speech synthesizer"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
# Use eSpeak NG as the original eSpeak project is dead.
|
|
TERMUX_PKG_VERSION="1.51"
|
|
TERMUX_PKG_SRCURL="https://github.com/espeak-ng/espeak-ng/archive/${TERMUX_PKG_VERSION}.tar.gz"
|
|
TERMUX_PKG_SHA256=f0e028f695a8241c4fa90df7a8c8c5d68dcadbdbc91e758a97e594bbb0a3bdbf
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="pcaudiolib"
|
|
TERMUX_PKG_BREAKS="espeak-dev"
|
|
TERMUX_PKG_REPLACES="espeak-dev"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_HOSTBUILD=true
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-async --with-pcaudiolib"
|
|
|
|
termux_step_post_get_source() {
|
|
# Certain packages are not safe to build on device because their
|
|
# build.sh script deletes specific files in $TERMUX_PREFIX.
|
|
if ${TERMUX_ON_DEVICE_BUILD}; then
|
|
termux_error_exit "Package '${TERMUX_PKG_NAME}' is not safe for on-device builds."
|
|
fi
|
|
|
|
./autogen.sh
|
|
}
|
|
|
|
termux_step_host_build() {
|
|
cd "${TERMUX_PKG_SRCDIR}" || exit 1
|
|
./configure && make
|
|
# Man pages require the ronn ruby program.
|
|
#make src/espeak-ng.1
|
|
#cp src/espeak-ng.1 $TERMUX_PREFIX/share/man/man1
|
|
#(cd $TERMUX_PREFIX/share/man/man1 && ln -s -f espeak-ng.1 espeak.1)
|
|
}
|
|
|
|
termux_step_make() {
|
|
make -B src/{e,}speak-ng
|
|
}
|
|
|
|
termux_step_pre_configure() {
|
|
# Oz flag causes problems. See https://github.com/termux/termux-packages/issues/1680:
|
|
CFLAGS=${CFLAGS/Oz/Os}
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
# Calling make install directly tends to build lang data files again but with cross compiled espeak-ng.
|
|
# So use make install-data which will install the data files compiled with previously built espeak-ng
|
|
# in host build step.
|
|
make install-data install-exec
|
|
}
|