mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
a31a69692d
98 ports are affected. Approved by: tcberner (mentor, implicit)
30 lines
765 B
Makefile
30 lines
765 B
Makefile
# Created by: Yuri Victorovich <yuri@rawbw.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= stk
|
|
PORTVERSION= 4.6.0
|
|
CATEGORIES= audio
|
|
MASTER_SITES= http://ccrma.stanford.edu/software/stk/release/
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Synthesis ToolKit in C++
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libjack.so:audio/jack
|
|
|
|
USES= autoreconf dos2unix gmake pkgconfig localbase
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-jack --with-oss
|
|
DOS2UNIX_GLOB= *.cpp *.h
|
|
MAKE_ARGS= RAWWAVES=${DATADIR}/rawwaves/
|
|
|
|
post-install:
|
|
@cd ${WRKSRC} && ${COPYTREE_SHARE} rawwaves ${STAGEDIR}${DATADIR}
|
|
@${RM} ${STAGEDIR}${DATADIR}/rawwaves/._* ${STAGEDIR}${DATADIR}/rawwaves/*.c
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libstk-${PORTVERSION}.so
|
|
|
|
.include <bsd.port.mk>
|