blob: 36da2e3ec40074c231d7b27b9af106d318f3cf21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
post_install() {
cat << MSG
> Ardour 3 has support for native "Linux" VSTs. You may want to export
> LXVST_PATH to include any custom directories of *.so VST plug-ins.
> Ardour 3 also supports video (timeline and monitoring), but aside from
> xjadeo the required external programs need to be retrieved from:
http://x42.github.io/harvid/
> Please consider supporting Paul Davis, lead developer of Ardour, by
> either subscribing or at least donating to the project's cause:
https://community.ardour.org/s/subscribe
https://community.ardour.org/donate
> With your continued support, Ardour will continue to improve and will
> one day no longer be dependent on unstable funding.
MSG
}
post_upgrade() {
cat << MSG
> Ardour now supports video timeline. To use this feature, please get
> static builds of the required external runtime dependencies from:
http://x42.github.io/harvid/
> You may then install the binaries in /usr/local/bin and import a video
> via Session > Open Video.
> Due to uncertainties with regards to program stability, 'harvid' is
> currently not packaged in our repositories.
> In addition to the timeline, video can be monitored with xjadeo.
MSG
}
# vim:set ts=2 sw=2 et:
|