mirror of
https://github.com/flatpak/flatpak.git
synced 2026-01-26 14:13:26 +00:00
A few years ago there was a very painful attempt at porting from libsoup2 to libsoup3. Flatpak libsoup3 support never landed and it seems like a large amount of distros have switched over to libcurl instead. This commit removes libsoup2 support completely instead of growing libsoup3 support. Closes #5915 Closes #4582
59 lines
1.4 KiB
Meson
59 lines
1.4 KiB
Meson
# Copyright 2022 Collabora Ltd.
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
permission_gdbus = gnome.gdbus_codegen(
|
|
'flatpak-permission-dbus',
|
|
sources: [
|
|
'../data/org.freedesktop.impl.portal.PermissionStore.xml',
|
|
],
|
|
interface_prefix : 'org.freedesktop.impl.portal',
|
|
namespace : 'XdpDbus',
|
|
)
|
|
|
|
portal_gdbus = gnome.gdbus_codegen(
|
|
'flatpak-portal-dbus',
|
|
sources: [
|
|
'../data/org.freedesktop.portal.Flatpak.xml',
|
|
],
|
|
interface_prefix : 'org.freedesktop.portal',
|
|
namespace : 'Portal',
|
|
)
|
|
|
|
executable(
|
|
'flatpak-portal',
|
|
dependencies : [
|
|
threads_dep,
|
|
base_deps,
|
|
json_glib_dep,
|
|
libflatpak_common_base_dep,
|
|
libflatpak_common_dep,
|
|
libglnx_dep,
|
|
libostree_dep,
|
|
],
|
|
include_directories : [
|
|
include_directories('.'),
|
|
],
|
|
install : true,
|
|
install_dir : get_option('libexecdir'),
|
|
sources : [
|
|
'flatpak-portal.c',
|
|
'flatpak-portal-app-info.c',
|
|
'portal-impl.c',
|
|
'../common/flatpak-portal-error.c',
|
|
] + permission_gdbus + portal_gdbus,
|
|
)
|
|
|
|
configure_file(
|
|
input : 'flatpak-portal.service.in',
|
|
output : 'flatpak-portal.service',
|
|
configuration : service_conf_data,
|
|
install_dir : get_option('systemduserunitdir'),
|
|
)
|
|
|
|
configure_file(
|
|
input : 'org.freedesktop.portal.Flatpak.service.in',
|
|
output : 'org.freedesktop.portal.Flatpak.service',
|
|
configuration : service_conf_data,
|
|
install_dir : dbus_service_dir,
|
|
)
|