c2664c008b
The SoX Resampler library 'libsoxr' performs one-dimensional sample-rate conversion - it may be used, for example, to resample PCM-encoded audio. It aims to give fast and high quality results for any constant (rational or irrational) resampling ratio. Phase-response, preserved bandwidth, aliasing, and rejection level parameters are all configurable; alternatively, simple `preset' configurations may be selected. An experimental, variable-rate resampling mode of operation is also included.
23 lines
546 B
Makefile
23 lines
546 B
Makefile
# $NetBSD: Makefile,v 1.1 2016/06/05 00:43:33 ryoon Exp $
|
|
|
|
DISTNAME= soxr-0.1.2-Source
|
|
PKGNAME= lib${DISTNAME:S/-Source//}
|
|
CATEGORIES= audio
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=soxr/}
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= https://sourceforge.net/p/soxr/wiki/Home/
|
|
COMMENT= SoX Resample library
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
USE_CMAKE= yes
|
|
USE_TOOLS+= pkg-config
|
|
USE_LANGUAGES= c c++
|
|
|
|
CMAKE_ARGS+= -DBUILD_TESTS=NO
|
|
|
|
PKGCONFIG_OVERRIDE+= src/soxr.pc.in
|
|
PKGCONFIG_OVERRIDE+= src/soxr-lsr.pc.in
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|