1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: Portfile 126332 2014-10-08 00:17:45Z ryandesign@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name faustlive-devel |
---|
7 | version 2.27-20141019 |
---|
8 | git.branch bb05751b3a6268bd08aebb57153aa11e17e3a871 |
---|
9 | categories audio |
---|
10 | platforms darwin |
---|
11 | maintainers ryandesign gmail.com:aggraef |
---|
12 | license GPL-3 |
---|
13 | homepage http://faust.grame.fr/ |
---|
14 | |
---|
15 | description a graphical frontend to the Faust compiler |
---|
16 | |
---|
17 | long_description FaustLive is ${description}. \ |
---|
18 | It provides an advanced self-contained prototyping \ |
---|
19 | environment for the Faust programming language with \ |
---|
20 | an ultra-short edit-compile-run cycle. \ |
---|
21 | Thanks to its fully embedded compilation chain, \ |
---|
22 | FaustLive is simple to install and doesn't require \ |
---|
23 | any external compiler, development toolchain or SDK \ |
---|
24 | to run. Faust programs can be compiled and run on the \ |
---|
25 | fly by simple drag and drop. They can even be edited \ |
---|
26 | and recompiled while running without interrupting \ |
---|
27 | sound or disconnecting the Jack audio server. |
---|
28 | |
---|
29 | fetch.type git |
---|
30 | git.url git://git.code.sf.net/p/faudiostream/faustlive |
---|
31 | |
---|
32 | set llvm_version 3.4 |
---|
33 | set llvm_prefix ${prefix}/libexec/llvm-${llvm_version} |
---|
34 | build.env PATH=${llvm_prefix}/bin:$env(PATH) |
---|
35 | |
---|
36 | depends_build port:faust2-devel \ |
---|
37 | port:clang-${llvm_version} \ |
---|
38 | port:llvm-${llvm_version} |
---|
39 | |
---|
40 | depends_lib port:curl \ |
---|
41 | port:libmicrohttpd \ |
---|
42 | port:liblo \ |
---|
43 | port:libsndfile \ |
---|
44 | port:openssl \ |
---|
45 | port:qrencode \ |
---|
46 | port:qt4-mac |
---|
47 | |
---|
48 | use_configure no |
---|
49 | |
---|
50 | build.args STATIC=1 |
---|
51 | destroot.args APPDIR=${applications_dir} |
---|
52 | |
---|
53 | variant jack description {Enable Jack support} { |
---|
54 | depends_lib-append port:jack |
---|
55 | build.args-append JACK=1 |
---|
56 | } |
---|
57 | |
---|
58 | post-destroot { |
---|
59 | set docdir ${destroot}${prefix}/share/doc/${subport} |
---|
60 | xinstall -d ${docdir} |
---|
61 | xinstall -d ${docdir}/FilesToConfigure |
---|
62 | xinstall -m 644 -W ${worksrcpath} \ |
---|
63 | GPL.txt \ |
---|
64 | Build/Darwin/README.txt \ |
---|
65 | Build/Darwin/Distributions/READ_ME_BEFORE_YOU_START.pdf \ |
---|
66 | Build/Darwin/Distributions/Whats_New.pdf \ |
---|
67 | Documentation/faust-quick-reference.pdf \ |
---|
68 | Documentation/UserManual.pdf \ |
---|
69 | ${docdir} |
---|
70 | xinstall -m 644 -W ${worksrcpath}/Build/Darwin/Distributions \ |
---|
71 | DefaultDSP.dsp \ |
---|
72 | DefaultDSP.lib \ |
---|
73 | process.svg \ |
---|
74 | ${docdir}/FilesToConfigure |
---|
75 | } |
---|
76 | |
---|
77 | # fixme |
---|
78 | livecheck.type none |
---|