90972c8b25
PR pkg/48279 by ISIHARA Takanori. Version 3.6: * add -o option to 'minmax' command to output maximum, minimum or both values. * add -o 4 option to 'vstat' command to output medians. * add options to 'vopr' command to deal with relational operators, arithmetic/ geometric mean, and ceiling/flooring. * add -T option to 'smcep' command to specifiy emphasized frequency. * add -E option to 'gcep', 'mcep', 'mgcep', 'spec', 'smcep' and 'uels' command to specify floor in dB. * add -F option to 'gmm' command to read initial GMM parameter file. * add -L and -R option to 'wav2raw' command to deal with stereo wav file. * add 'gseries', 'ifftr', 'mlsacheck', 'symmetrize' and 'transpose' command. * change -f option of 'lbg' command into -F option. * unify option to specify sampling frequency into -s option. * fix 'x2x', 'dmp' and 'fd' command to read format string without space in front of '%'. * bug fixes.
32 lines
968 B
Makefile
32 lines
968 B
Makefile
# $NetBSD: Makefile,v 1.6 2013/10/07 13:06:04 obache Exp $
|
|
#
|
|
|
|
DISTNAME= SPTK-3.6
|
|
PKGNAME= ${DISTNAME:tl}
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sp-tk/}
|
|
DISTFILES= ${DEFAULT_DISTFILES}
|
|
DISTFILES+= SPTKref-${PKGVERSION_NOREV}.pdf
|
|
DISTFILES+= SPTKexamples-${PKGVERSION_NOREV}.pdf
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://sp-tk.sourceforge.net/
|
|
COMMENT= Suite of speech signal processing tools
|
|
LICENSE= modified-bsd
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_TOOLS+= csh:run
|
|
|
|
GNU_CONFIGURE_PREFIX= ${PREFIX}/SPTK
|
|
CONFIGURE_ENV+= CSH=${CSH}
|
|
CONFIGURE_ARGS+= --disable-da
|
|
|
|
INSTALLATION_DIRS+= share/doc/sptk
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/README ${DESTDIR}${PREFIX}/share/doc/sptk
|
|
${INSTALL_DATA} ${WRKDIR}/SPTKref-${PKGVERSION_NOREV}.pdf ${DESTDIR}${PREFIX}/share/doc/sptk
|
|
${INSTALL_DATA} ${WRKDIR}/SPTKexamples-${PKGVERSION_NOREV}.pdf ${DESTDIR}${PREFIX}/share/doc/sptk
|
|
|
|
.include "../../x11/libX11/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|