Add basic debian build script.
[dcpomatic.git] / wscript
1 import subprocess
2 import os
3 import sys
4
5 APPNAME = 'dvdomatic'
6 VERSION = '0.59beta1'
7
8 def options(opt):
9     opt.load('compiler_cxx')
10     opt.load('winres')
11
12     opt.add_option('--enable-debug', action='store_true', default = False, help = 'build with debugging information and without optimisation')
13     opt.add_option('--disable-gui', action='store_true', default = False, help = 'disable building of GUI tools')
14     opt.add_option('--target-windows', action='store_true', default = False, help = 'set up to do a cross-compile to Windows')
15     opt.add_option('--static', action='store_true', default = False, help = 'build statically, and link statically to libdcp and FFmpeg')
16
17 def configure(conf):
18     conf.load('compiler_cxx')
19     if conf.options.target_windows:
20         conf.load('winres')
21
22     conf.env.append_value('CXXFLAGS', ['-D__STDC_CONSTANT_MACROS', '-msse', '-mfpmath=sse', '-ffast-math', '-fno-strict-aliasing', '-Wall', '-Wno-attributes'])
23     # libxml2 seems to be linked against this on Ubuntu, but it doesn't mention it in its .pc file
24     conf.env.append_value('LIB', 'lzma')
25
26     if conf.options.target_windows:
27         conf.env.append_value('CXXFLAGS', ['-DDVDOMATIC_WINDOWS', '-DWIN32_LEAN_AND_MEAN', '-DBOOST_USE_WINDOWS_H'])
28         wxrc = os.popen('wx-config --rescomp').read().split()[1:]
29         print wxrc
30         conf.env.append_value('WINRCFLAGS', wxrc)
31         if conf.options.enable_debug:
32             conf.env.append_value('CXXFLAGS', ['-mconsole'])
33             conf.env.append_value('LINKFLAGS', ['-mconsole'])
34         conf.check(lib = 'ws2_32', uselib_store = 'WINSOCK2', msg = "Checking for library winsock2")
35         boost_lib_suffix = '-mt'
36         boost_thread = 'boost_thread_win32-mt'
37     else:
38         conf.env.append_value('CXXFLAGS', '-DDVDOMATIC_POSIX')
39         boost_lib_suffix = ''
40         boost_thread = 'boost_thread'
41         conf.env.append_value('LINKFLAGS', '-pthread')
42
43     conf.env.TARGET_WINDOWS = conf.options.target_windows
44     conf.env.DISABLE_GUI = conf.options.disable_gui
45     conf.env.STATIC = conf.options.static
46     conf.env.VERSION = VERSION
47
48     if conf.options.enable_debug:
49         conf.env.append_value('CXXFLAGS', ['-g', '-DDVDOMATIC_DEBUG'])
50     else:
51         conf.env.append_value('CXXFLAGS', '-O2')
52
53     # Arguments to pkg-config for things that we might want to link statically
54     pkgconfig_args = '--cflags --libs'
55     if conf.options.static:
56         pkgconfig_args += ' --static'
57
58     conf.check_cfg(package = 'libavformat', args = pkgconfig_args, uselib_store = 'AVFORMAT', mandatory = True)
59     conf.check_cfg(package = 'libavfilter', args = pkgconfig_args, uselib_store = 'AVFILTER', mandatory = True)
60     conf.check_cfg(package = 'libavcodec', args = pkgconfig_args, uselib_store = 'AVCODEC', mandatory = True)
61     conf.check_cfg(package = 'libavutil', args = pkgconfig_args, uselib_store = 'AVUTIL', mandatory = True)
62     conf.check_cfg(package = 'libswscale', args = pkgconfig_args, uselib_store = 'SWSCALE', mandatory = True)
63     conf.check_cfg(package = 'libswresample', args = pkgconfig_args, uselib_store = 'SWRESAMPLE', mandatory = False)
64     conf.check_cfg(package = 'libpostproc', args = pkgconfig_args, uselib_store = 'POSTPROC', mandatory = True)
65     conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True)
66     conf.check_cfg(package = 'libdcp', atleast_version = '0.33', args = pkgconfig_args, uselib_store = 'DCP', mandatory = True)
67     conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True)
68     conf.check_cfg(package = '', path = 'Magick++-config', args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True)
69
70     openjpeg_fragment = """
71                         #include <stdio.h>\n
72                         #include <openjpeg.h>\n
73                         int main () {\n
74                         void* p = (void *) opj_image_create;\n
75                         return 0;\n
76                         }
77                         """
78
79     if conf.options.static:
80         conf.check_cc(fragment  = openjpeg_fragment, msg = 'Checking for library openjpeg', stlib = 'openjpeg', uselib_store = 'OPENJPEG')
81     else:
82         conf.check_cc(fragment  = openjpeg_fragment, msg = 'Checking for library openjpeg', lib = 'openjpeg', uselib_store = 'OPENJPEG')
83
84     conf.check_cc(fragment  = """
85                               #include <libssh/libssh.h>\n
86                               int main () {\n
87                               ssh_session s = ssh_new ();\n
88                               return 0;\n
89                               }
90                               """, msg = 'Checking for library libssh', mandatory = False, lib = 'ssh', uselib_store = 'SSH')
91
92     conf.check_cxx(fragment = """
93                               #include <boost/thread.hpp>\n
94                               int main() { boost::thread t (); }\n
95                               """, msg = 'Checking for boost threading library',
96                               lib = [boost_thread, 'boost_system%s' % boost_lib_suffix],
97                               uselib_store = 'BOOST_THREAD')
98
99     conf.check_cxx(fragment = """
100                               #include <boost/filesystem.hpp>\n
101                               int main() { boost::filesystem::copy_file ("a", "b"); }\n
102                               """, msg = 'Checking for boost filesystem library',
103                               libpath = '/usr/local/lib',
104                               lib = ['boost_filesystem%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
105                               uselib_store = 'BOOST_FILESYSTEM')
106
107     conf.check_cxx(fragment = """
108                               #include <boost/date_time.hpp>\n
109                               int main() { boost::gregorian::day_clock::local_day(); }\n
110                               """, msg = 'Checking for boost datetime library',
111                               libpath = '/usr/local/lib',
112                               lib = ['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix],
113                               uselib_store = 'BOOST_DATETIME')
114
115     conf.check_cxx(fragment = """
116                               #include <boost/signals2.hpp>\n
117                               int main() { boost::signals2::signal<void (int)> x; }\n
118                               """,
119                               msg = 'Checking for boost signals2 library',
120                               uselib_store = 'BOOST_SIGNALS2')
121
122     conf.check_cc(fragment = """
123                              #include <glib.h>
124                              int main() { g_format_size (1); }
125                              """, msg = 'Checking for g_format_size ()',
126                              uselib = 'GLIB',
127                              define_name = 'HAVE_G_FORMAT_SIZE',
128                              mandatory = False)
129
130     conf.recurse('src')
131     conf.recurse('test')
132
133 def build(bld):
134     create_version_cc(VERSION)
135
136     bld.recurse('src')
137     bld.recurse('test')
138     if bld.env.TARGET_WINDOWS:
139         bld.recurse('windows')
140
141     d = { 'PREFIX' : '${PREFIX' }
142
143     obj = bld(features = 'subst')
144     obj.source = 'dvdomatic.desktop.in'
145     obj.target = 'dvdomatic.desktop'
146     obj.dict = d
147
148     bld.install_files('${PREFIX}/share/applications', 'dvdomatic.desktop')
149     for r in ['22x22', '32x32', '48x48', '64x64', '128x128']:
150         bld.install_files('${PREFIX}/share/icons/hicolor/%s/apps' % r, 'icons/%s/dvdomatic.png' % r)
151
152     bld.add_post_fun(post)
153
154 def dist(ctx):
155     ctx.excl = 'TODO core *~ src/wx/*~ src/lib/*~ .waf* build .git deps alignment hacks sync *.tar.bz2 *.exe .lock* *build-windows doc/manual/pdf doc/manual/html'
156
157 def create_version_cc(version):
158     if os.path.exists('.git'):
159         cmd = "LANG= git log --abbrev HEAD^..HEAD ."
160         output = subprocess.Popen(cmd, shell=True, stderr=subprocess.STDOUT, stdout=subprocess.PIPE).communicate()[0].splitlines()
161         o = output[0].decode('utf-8')
162         commit = o.replace ("commit ", "")[0:10]
163     else:
164         commit = 'release'
165
166     try:
167         text =  '#include "version.h"\n'
168         text += 'char const * dvdomatic_git_commit = \"%s\";\n' % commit
169         text += 'char const * dvdomatic_version = \"%s\";\n' % version
170         print('Writing version information to src/lib/version.cc')
171         o = open('src/lib/version.cc', 'w')
172         o.write(text)
173         o.close()
174     except IOError:
175         print('Could not open src/lib/version.cc for writing\n')
176         sys.exit(-1)
177     
178 def post(ctx):
179     if ctx.cmd == 'install':
180         ctx.exec_command('/sbin/ldconfig')