mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
a84c115a09
Approved by: portmgr (not really, but touches unstaged ports)
32 lines
809 B
Makefile
32 lines
809 B
Makefile
# Created by: trasz <trasz@pin.if.uz.zgora.pl>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libconvolve
|
|
PORTVERSION= 0.0.8
|
|
PORTREVISION= 4
|
|
CATEGORIES= audio
|
|
MASTER_SITES= SF/heaven/Audio%20Applications/Jack%20Related/jack_convolve/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Simple C library for partitioned convolution
|
|
|
|
LICENSE= GPLv2 GPLv3
|
|
LICENSE_COMB= dual
|
|
|
|
LIB_DEPENDS= libfftw3.so:${PORTSDIR}/math/fftw3 \
|
|
libfftw3f.so:${PORTSDIR}/math/fftw3-float \
|
|
libsamplerate.so:${PORTSDIR}/audio/libsamplerate \
|
|
libsndfile.so:${PORTSDIR}/audio/libsndfile
|
|
|
|
USES= gmake pkgconfig tar:tgz
|
|
USE_LDCONFIG= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/cp / s|PREFIX|DESTDIR)$$(&|g' \
|
|
-e '/ln / s|PREFIX|DESTDIR)$$(&|2' \
|
|
${WRKSRC}/Makefile
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}.so.0.0.8
|
|
|
|
.include <bsd.port.mk>
|