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
|
import glob
import shutil
import os
def dependencies(target):
if target.platform == 'windows':
return ()
else:
return (('openjpeg-cdist', None),
('ffmpeg-cdist', '7a23ec9c771184ab563cfe24ad9b427f38368961'),
('libdcp', 'v0.49'))
def build(env, target):
cmd = './waf configure --prefix=%s' % env.work_dir_cscript()
if target.platform == 'windows':
cmd += ' --target-windows'
else:
cmd += ' --static'
env.command(cmd)
env.command('./waf')
if target.platform == 'linux':
env.command('./waf install')
def package(env, target, version):
if target.platform == 'windows':
shutil.copyfile('build/windows/installer.%s.nsi' % target.bits, 'build/windows/installer2.%s.nsi' % target.bits)
env.command('sed -i "s~%%resources%%~%s/windows~g" build/windows/installer2.%s.nsi' % (os.getcwd(), target.bits))
env.command('sed -i "s~%%deps%%~%s~g" build/windows/installer2.%s.nsi' % (env.windows_prefix, target.bits))
env.command('sed -i "s~%%binaries%%~%s/build~g" build/windows/installer2.%s.nsi' % (os.getcwd(), target.bits))
env.command('sed -i "s~%%bits%%~32~g" build/windows/installer2.%s.nsi' % target.bits)
env.command('makensis build/windows/installer2.%s.nsi' % target.bits)
return os.path.abspath(glob.glob('build/windows/*%s*.exe' % target.bits)[0])
elif target.platform == 'linux':
if target.bits == 32:
cpu = 'i386'
else:
cpu = 'amd64'
shutil.copyfile('builds/control-%s-%d' % (target.version, target.bits), 'debian/control')
env.command('./waf dist')
f = open('debian/files', 'w')
print >>f,'dvdomatic_%s-1_%s.deb video extra' % (version, cpu)
shutil.rmtree('build/deb', ignore_errors=True)
os.makedirs('build/deb')
os.chdir('build/deb')
shutil.move('../../dvdomatic-%s.tar.bz2' % version, 'dvdomatic_%s.orig.tar.bz2' % version)
env.command('tar xjf dvdomatic_%s.orig.tar.bz2' % version)
os.chdir('dvdomatic-%s' % version)
env.command('dch -b -v %s-1 "New upstream release."' % version)
env.set('CDIST_LINKFLAGS', env.get('LINKFLAGS'))
env.set('CDIST_CXXFLAGS', env.get('CXXFLAGS'))
env.set('CDIST_PKG_CONFIG_PATH', env.get('PKG_CONFIG_PATH'))
env.command('dpkg-buildpackage')
debs = []
for p in glob.glob('../*.deb'):
debs.append(os.path.abspath(p))
return debs
def make_pot(env):
env.command('./waf pot')
return [os.path.abspath('build/src/lib/libdvdomatic.pot'),
os.path.abspath('build/src/wx/libdvdomatic-wx.pot'),
os.path.abspath('build/src/tools/dvdomatic.pot')]
def make_manual(env):
os.chdir('doc/manual')
env.command('make')
return [os.path.abspath('pdf'), os.path.abspath('html')]
|