blob: 4bec5188379c2b755f65650ea56bc1abf894aa03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools git-r3
EGIT_REPO_URI="https://android.googlesource.com/platform/external/svox/"
DESCRIPTION="SVOX PicoTTS text-to-speech engine"
HOMEPAGE="https://android.googlesource.com/platform/external/svox/+/master"
LICENSE="Apache-2.0"
SLOT="0"
DEPEND=""
RDEPEND="${DEPEND}"
PATCHES=("${FILESDIR}/patches/conditional/pipe.patch")
S="${WORKDIR}/${P}/pico"
src_prepare() {
default
eautoreconf
}
|