From 1b3adf7328c81519bdac00f71337ba616c1e9fe3 Mon Sep 17 00:00:00 2001 From: Catena cyber <35799796+catenacyber@users.noreply.github.com> Date: Thu, 6 May 2021 22:39:47 +0200 Subject: Adds project espeak-ng (#5543) * Adds project espeak-ng * Remove patch merged upstream * Disable leaking speech player * Restrict to working configs --- projects/espeak-ng/Dockerfile | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 projects/espeak-ng/Dockerfile (limited to 'projects/espeak-ng/Dockerfile') diff --git a/projects/espeak-ng/Dockerfile b/projects/espeak-ng/Dockerfile new file mode 100644 index 000000000..674c629ca --- /dev/null +++ b/projects/espeak-ng/Dockerfile @@ -0,0 +1,21 @@ +# Copyright 2021 Google LLC +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +################################################################################ + +FROM gcr.io/oss-fuzz-base/base-builder +RUN apt-get update && apt install -y automake autoconf libtool pkg-config +RUN git clone --depth 1 https://github.com/espeak-ng/espeak-ng +COPY build.sh $SRC +WORKDIR $SRC/espeak-ng -- cgit v1.2.3