2021-04-07 21:37:02 +02:00
|
|
|
PORTNAME= poly
|
2021-04-08 09:32:08 +02:00
|
|
|
DISTVERSION= g20210408
|
2021-04-07 21:37:02 +02:00
|
|
|
CATEGORIES= audio
|
|
|
|
PKGNAMESUFFIX= -lv2
|
|
|
|
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
|
|
COMMENT= Collection of LV2 plugins designed for modular/eurorack style use
|
|
|
|
|
2021-04-08 09:32:08 +02:00
|
|
|
LICENSE= GPLv3
|
|
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
2021-04-07 21:37:02 +02:00
|
|
|
|
|
|
|
BUILD_DEPENDS= lv2>0:audio/lv2 \
|
|
|
|
${LOCALBASE}/include/boost/circular_buffer.hpp:devel/boost-libs
|
|
|
|
|
2021-04-09 18:21:07 +02:00
|
|
|
USES= compiler:c11 gmake pkgconfig
|
2021-04-07 21:37:02 +02:00
|
|
|
|
|
|
|
USE_GITHUB= yes
|
|
|
|
GH_ACCOUNT= polyeffects
|
|
|
|
GH_PROJECT= PolyLV2
|
2021-04-08 09:32:08 +02:00
|
|
|
GH_TAGNAME= a363599
|
2021-04-07 21:37:02 +02:00
|
|
|
|
|
|
|
do-build:
|
|
|
|
@cd ${WRKSRC} && for d in $$(ls); do \
|
|
|
|
if [ -d $${d} ]; then \
|
|
|
|
echo "==> Building for sub-directory $${d}" && ( \
|
|
|
|
cd $${d} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${ALL_TARGET} \
|
|
|
|
) \
|
|
|
|
fi \
|
|
|
|
done
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
@cd ${WRKSRC} && for d in $$(ls); do \
|
|
|
|
if [ -d $${d} ]; then \
|
|
|
|
echo "==> Staging for sub-directory $${d}" && ( \
|
|
|
|
cd $${d} && ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} ${INSTALL_TARGET} \
|
|
|
|
) \
|
|
|
|
fi \
|
|
|
|
done
|
|
|
|
|
|
|
|
post-install:
|
|
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lv2/basic_modular.lv2/maths.so
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|