blob: e22249d83e5d47c5c2a9162b72a752cfec11c7b2 (
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
|
#!/usr/bin/env python
import sys
import autowaf
import Options
# Version of this package (even if built as a child)
LV2CORE_VERSION = '4.0pre1'
# Variables for 'waf dist'
APPNAME = 'lv2core'
VERSION = LV2CORE_VERSION
# Mandatory variables
srcdir = '.'
blddir = 'build'
def set_options(opt):
opt.add_option('--bundle-only', action='store_true', default=False, dest='bundle_only',
help="Only install LV2 bundle (not header or pkg-config file)")
autowaf.set_options(opt)
def configure(conf):
autowaf.configure(conf)
def build(bld):
# Header "library"
obj = bld.new_task_gen()
obj.export_incdirs = ['.']
obj.name = 'liblv2core'
obj.target = 'lv2core'
if not Options.options.bundle_only:
# Header
bld.install_files('${INCLUDEDIR}', 'lv2.h')
# Pkgconfig file
autowaf.build_pc(bld, 'LV2CORE', LV2CORE_VERSION, [])
# Bundle (data)
bld.install_files('${LV2DIR}/lv2core.lv2', 'lv2.ttl manifest.ttl')
# lv2config
bld.install_files('${BINDIR}', 'lv2config', chmod=0755)
def dist():
import Scripting
Scripting.g_gz = 'gz'
Scripting.dist()
|