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 125490 2014-09-18 20:46:07Z devans@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup waf 1.0 |
---|
6 | |
---|
7 | name lv2 |
---|
8 | version 1.10.0 |
---|
9 | revision 0 |
---|
10 | license MIT |
---|
11 | categories audio |
---|
12 | maintainers ryandesign |
---|
13 | platforms darwin |
---|
14 | |
---|
15 | description header files needed for LV2 plugin development |
---|
16 | long_description ${name} provides the ${description}. \ |
---|
17 | LV2 is an extensible standard for audio plugins, \ |
---|
18 | similar in scope to LADSPA, VST, AU, and others. |
---|
19 | |
---|
20 | homepage http://lv2plug.in/ |
---|
21 | master_sites http://lv2plug.in/spec/ |
---|
22 | |
---|
23 | use_bzip2 yes |
---|
24 | |
---|
25 | checksums rmd160 0aaf8cda542c3269c079006afc803dca9e6a6591 \ |
---|
26 | sha256 e80c8e4b45d4de3b09f26d76e39d454739b6aff3f444ea1dabe466ab530fa4d5 |
---|
27 | |
---|
28 | configure.args-append --no-plugins |
---|
29 | |
---|
30 | depends_build port:pkgconfig |
---|
31 | |
---|
32 | variant plugins description {Add sample plugins} { |
---|
33 | depends_lib-append port:libsndfile port:gtk2 port:cairo |
---|
34 | configure.args-delete --no-plugins |
---|
35 | } |
---|
36 | |
---|
37 | livecheck.type regex |
---|
38 | livecheck.url ${master_sites} |
---|
39 | livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}" |
---|