forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pocketsphinx-0.8.ebuild
50 lines (41 loc) · 996 Bytes
/
pocketsphinx-0.8.ebuild
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=( python2_7 )
DISTUTILS_OPTIONAL=1
inherit eutils distutils-r1
DESCRIPTION="Large open source vocabulary, speaker-independent continuous speech recognition engine"
HOMEPAGE="https://sourceforge.net/projects/cmusphinx/"
SRC_URI="mirror://sourceforge/cmusphinx/${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="python static-libs"
RDEPEND="app-accessibility/sphinxbase
media-libs/gstreamer:0.10
media-libs/gst-plugins-base:0.10
python? ( ${PYTHON_DEPS} )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
run_distutils() {
if use python; then
pushd python > /dev/null || die
distutils-r1_"${@}"
popd > /dev/null || die
fi
}
src_configure() {
econf \
--without-python \
$(use_enable static-libs static)
}
src_compile() {
default
run_distutils ${FUNCNAME}
}
src_install() {
default
run_distutils ${FUNCNAME}
prune_libtool_files
}