Talkbox is set of python modules for speech/signal processing. The goal of this toolbox is to be a sandbox for features which may end up in scipy at some point. The following features are planned before a 1.0 release: * Spectrum estimation related functions: both parametic (lpc, high resolution methods like music and co), and non-parametric (Welch, periodogram) * Fourier-like transforms (DCT, DST, MDCT, etc...) * Basic signal processing tasks such as resampling * Speech related functionalities: mfcc, mel spectrum, etc.. * More as it comes
20 lines
628 B
Makefile
20 lines
628 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2011/01/19 14:36:48 jihbed Exp $
|
|
#
|
|
|
|
DISTNAME= scikits.talkbox-0.2.5
|
|
PKGNAME= ${PYPKGPREFIX}-scikits_talkbox-0.2.5
|
|
CATEGORIES= math python
|
|
MASTER_SITES= http://pypi.python.org/packages/source/s/scikits.talkbox/
|
|
|
|
MAINTAINER= jihbed.research@gmail.com
|
|
HOMEPAGE= http://projects.scipy.org/scipy/scikits
|
|
COMMENT= Talkbox, a set of python modules for speech/signal processing
|
|
#LICENSE= # TODO: (see mk/license.mk)
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
WRKSRC= ${WRKDIR}/scikits.talkbox-0.2.5
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../math/py-numpy/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|