Ticket #45185: Portfile

File Portfile, 1.4 KB (added by agraef (Albert Graef), 10 years ago)

lv2 Portfile

Line 
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
4PortSystem              1.0
5PortGroup               waf 1.0
6
7name                    lv2
8version                 1.10.0
9revision                0
10license                 MIT
11categories              audio
12maintainers             ryandesign
13platforms               darwin
14
15description             header files needed for LV2 plugin development
16long_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
20homepage                http://lv2plug.in/
21master_sites            http://lv2plug.in/spec/
22
23use_bzip2               yes
24
25checksums               rmd160  0aaf8cda542c3269c079006afc803dca9e6a6591 \
26                        sha256  e80c8e4b45d4de3b09f26d76e39d454739b6aff3f444ea1dabe466ab530fa4d5
27
28configure.args-append   --no-plugins
29
30depends_build           port:pkgconfig
31
32variant plugins description {Add sample plugins} {
33    depends_lib-append port:libsndfile port:gtk2 port:cairo
34    configure.args-delete --no-plugins
35}
36
37livecheck.type          regex
38livecheck.url           ${master_sites}
39livecheck.regex         "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"