mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
3acf65bd2b
speaker-independent, continuous speech recognition engine. Once the system is built, try running the Perl script sphinx3-demo. The sphinx3-test script should run sphinx3-batch over an example utterance of "go forward ten meters." WWW: http://www.speech.cs.cmu.edu/sphinx/ PR: ports/121612 Submitted by: Richard Neese <r.neese@gmail.com>
34 lines
756 B
Makefile
34 lines
756 B
Makefile
# New ports collection makefile for: sphinx3
|
|
# Date created: 4 Jan 2008
|
|
# Whom: Richard Neese
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= sphinx3
|
|
PORTVERSION= 0.7
|
|
CATEGORIES= audio accessibility
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= cmusphinx
|
|
|
|
MAINTAINER= r.neese@gmail.com
|
|
COMMENT= Speech recognition system
|
|
|
|
LIB_DEPENDS= sphinxfe.0:${PORTSDIR}/audio/sphinxbase
|
|
|
|
USE_LDCONFIG= yes
|
|
USE_GMAKE= yes
|
|
USE_AUTOTOOLS=libtool:15
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${LOCALBASE}/include/sphinxbase" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
MAKE_ENV= MKDIR="${MKDIR}" \
|
|
OSVERSION=${OSVERSION} \
|
|
CXX="${CXX}"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|(libdir)/pkgconfig|(prefix)/libdata/pkgconfig|' ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|