Skip to content

Commit

Permalink
fix: suse依赖adw绑定py相关
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhldr committed Nov 23, 2024
1 parent 515dbbf commit 6abff63
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkg/rpm/SPECS/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,6 @@ conf_pkg_rpm = configuration_data()
foreach key : conf_pkg.keys()
conf_pkg_rpm.set(key, conf_pkg.get(key))
endforeach
if bt == 'qt'
deps = deps0 + ' python3-Pillow python3-PyQt6'
else
deps = deps0 + ' python3-Pillow python3-gobject libadwaita typelib-1_0-Gtk-4_0'
endif
conf_pkg_rpm.set('DEPS', deps)
conf_pkg_rpm.set('BUILD_TYPE', bt)

Expand All @@ -28,9 +23,14 @@ configure_file(


conf_pkg_rpm_suse = configuration_data()
foreach key : conf_pkg_rpm.keys()
conf_pkg_rpm_suse.set(key, conf_pkg_rpm.get(key))
foreach key : conf_pkg.keys()
conf_pkg_rpm_suse.set(key, conf_pkg.get(key))
endforeach
if bt == 'qt'
deps = deps0 + ' python3-Pillow python3-PyQt6'
else
deps = deps0 + ' python3-Pillow python3-gobject typelib-1_0-Gtk-4_0 typelib-1_0-Adw-1'
endif
conf_pkg_rpm_suse.set('DEPS', deps)
conf_pkg_rpm_suse.set('BUILD_TYPE', bt)

Expand Down

0 comments on commit 6abff63

Please sign in to comment.