This software requires only Python to build. = LV2 Core package instructions = This package contains a header file, pkg-config file, and an LV2 bundle; there is no code that requires compiling (i.e. this is NOT a library). Accordingly, the versioning scheme is simpler than a library: the major number is the version number of the LV2 specification, and the minor number is the version of this package. There is no 'micro' number. The configure option --bundle-only can be used to install only the bundle. This can be used in conjunction with the --lv2-user option to install only the bundle to the user-specific (i.e. in your home directory) LV2 path, if you do not have write access to the system. Distribution packages should install everything, as apps may depend on 'lv2core' (via pkg-config) to ensure both the header and data bundle are present. = Generic waf instructions = Like an auto* project, building has three phases: * Configure: ./waf configure [OPTIONS] Example: ./waf configure --prefix=/some/where The default prefix is /usr/local * Build: ./waf [OPTIONS] Example: ./waf * Install: ./waf install [OPTIONS] The environment variable DESTDIR can be used to add any prefix to the install paths (useful for packaging). Example: DESTDIR=/home/drobilla/packages ./waf install *** IMPORTANT: You must use absolute paths everywhere Run './waf --help' for detailed option information. v2.git/log/waf'>logtreecommitdiffstats
path: root/waf
blob: 3f4ece913a1582022edc2030949c5a07efd26b0b (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168