mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
41cd01ca66
Amsynth is an analog modelling (a.k.a virtual analog) software synthesizer. It mimics the operation of early analog subtractive synthesizers with classic oscillator waveforms, envelopes, filter, modulation and effects. WWW: http://amsynth.github.io/ PR: 223361 Submitted by: owen94012@gmail.com
50 lines
1.1 KiB
Makefile
50 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= amsynth
|
|
DISTVERSION= 1.8.0.g20171103
|
|
CATEGORIES= audio
|
|
|
|
MAINTAINER= hello@blubee.me
|
|
COMMENT= Analog modelling software synth
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/dssi.h:audio/dssi
|
|
RUN_DEPENDS= dssi>0:audio/dssi
|
|
LIB_DEPENDS= libasound.so:audio/alsa-lib \
|
|
libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2 \
|
|
libjack.so:audio/jack \
|
|
liblash.so:audio/lash \
|
|
liblo.so:audio/liblo \
|
|
libsndfile.so:audio/libsndfile
|
|
|
|
USES= autoreconf:build compiler:gcc-c++11-lib gettext-tools \
|
|
gmake libtool localbase pkgconfig
|
|
USE_CXXSTD= gnu++11
|
|
USE_GITHUB= yes
|
|
GH_TAGNAME= 37f25f2
|
|
USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 intltool pango
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_ICONS= yes
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
NLS_USES= gettext
|
|
NLS_CONFIGURE_ENABLE= nls
|
|
|
|
pre-configure:
|
|
@cd ${WRKSRC} && ./autogen.sh
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/dssi/*.so \
|
|
${STAGEDIR}${PREFIX}/lib/dssi/amsynth_dssi/amsynth_dssi_gtk \
|
|
${STAGEDIR}${PREFIX}/lib/vst/amsynth_vst.so \
|
|
${STAGEDIR}${PREFIX}/lib/lv2/amsynth.lv2/*.so
|
|
|
|
.include <bsd.port.mk>
|