summaryrefslogtreecommitdiff
path: root/backends/aptcc/meson.build
blob: 2a6eae727633445f2f94d92b8ff207fba1196c36 (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
add_languages('cpp')

cpp_compiler = meson.get_compiler('cpp')

gstreamer_dep = dependency('gstreamer-1.0')
gstreamer_base_dep = dependency('gstreamer-base-1.0')
gstreamer_plugins_base_dep = dependency('gstreamer-plugins-base-1.0')
appstream_dep = dependency('appstream', version: '>=0.12')
apt_pkg_dep = dependency('apt-pkg', version: '>=1.9.2')

# Check whether apt supports ddtp
ddtp_flag = []
if cpp_compiler.compiles(
  '''
    #include <apt-pkg/pkgcache.h>
    int main () {
      pkgCache::DescIterator d;
      return 0;
    }
  ''',
  dependencies: [
    apt_pkg_dep
  ]
)
  ddtp_flag = ['-DHAVE_DDTP']
endif

shared_module(
  'pk_backend_aptcc',
  'acqpkitstatus.cpp',
  'acqpkitstatus.h',
  'gst-matcher.cpp',
  'gst-matcher.h',
  'apt-messages.cpp',
  'apt-messages.h',
  'apt-utils.cpp',
  'apt-utils.h',
  'apt-sourceslist.cpp',
  'apt-sourceslist.h',
  'apt-cache-file.cpp',
  'apt-cache-file.h',
  'apt-intf.cpp',
  'apt-intf.h',
  'pkg-list.cpp',
  'pkg-list.h',
  'deb-file.cpp',
  'deb-file.h',
  'pk-backend-aptcc.cpp',
  include_directories: packagekit_src_include,
  dependencies: [
    packagekit_glib2_dep,
    gmodule_dep,
    apt_pkg_dep,
    gstreamer_dep,
    gstreamer_base_dep,
    gstreamer_plugins_base_dep,
    appstream_dep,
  ],
  cpp_args: [
    '-DG_LOG_DOMAIN="PackageKit-APTcc"',
    '-DPK_COMPILATION=1',
    '-DDATADIR="@0@"'.format(join_paths(get_option('prefix'), get_option('datadir'))),
    ddtp_flag,
  ],
  link_args: [
    '-lutil',
  ],
  override_options: ['c_std=c11', 'cpp_std=c++11'],
  install: true,
  install_dir: pk_plugin_dir,
)

install_data(
  '20packagekit',
  install_dir: join_paths(get_option('sysconfdir'), 'apt', 'apt.conf.d'),
)

install_data(
  'pkconffile.nodiff',
  install_dir: join_paths(get_option('datadir'), 'PackageKit', 'helpers', 'aptcc'),
)