summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorJeremy Bicha <jbicha@debian.org>2021-09-19 08:34:46 -0400
committerJeremy Bicha <jbicha@debian.org>2021-09-19 08:34:46 -0400
commitfa404167421d492093979de944157967b85734be (patch)
treee856e72fceb12d153727cdc114c06e5f08a608b8 /debian
parentNew upstream release (diff)
downloadzenity-fa404167421d492093979de944157967b85734be.tar.gz
zenity-fa404167421d492093979de944157967b85734be.tar.bz2
zenity-fa404167421d492093979de944157967b85734be.zip
Build with meson
Diffstat (limited to 'debian')
-rw-r--r--debian/control11
-rw-r--r--debian/control.in11
-rwxr-xr-xdebian/rules5
3 files changed, 15 insertions, 12 deletions
diff --git a/debian/control b/debian/control
index 9d111753..12203e92 100644
--- a/debian/control
+++ b/debian/control
@@ -6,16 +6,15 @@ Source: zenity
Section: gnome
Priority: optional
Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
-Uploaders: Jeremy Bicha <jbicha@debian.org>, Laurent Bigonville <bigon@debian.org>, Michael Biebl <biebl@debian.org>, Sebastien Bacher <seb128@debian.org>
-Build-Depends: autoconf-archive,
- debhelper-compat (= 12),
+Uploaders: Jeremy Bicha <jbicha@debian.org>, Laurent Bigonville <bigon@debian.org>, Sebastien Bacher <seb128@debian.org>
+Build-Depends: debhelper-compat (= 12),
dh-sequence-gnome,
- yelp-tools,
- gettext (>= 0.19.4),
+ itstool,
libglib2.0-dev,
libgtk-3-dev (>= 3.0.0),
libnotify-dev (>= 0.6.1),
- libwebkit2gtk-4.0-dev (>= 2.8.1) [!ia64 !kfreebsd-any !sh4]
+ libwebkit2gtk-4.0-dev (>= 2.8.1) [!ia64 !kfreebsd-any !sh4],
+ meson (>= 0.53.0)
Rules-Requires-Root: no
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/gnome-team/zenity
diff --git a/debian/control.in b/debian/control.in
index ad30c127..7f91ad41 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -3,15 +3,14 @@ Section: gnome
Priority: optional
Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
Uploaders: @GNOME_TEAM@
-Build-Depends: autoconf-archive,
- debhelper-compat (= 12),
+Build-Depends: debhelper-compat (= 12),
dh-sequence-gnome,
- yelp-tools,
- gettext (>= 0.19.4),
+ itstool,
libglib2.0-dev,
- libgtk-3-dev (>= 3.0.0),
+ libgtk-3-dev (>= 3.16.0),
libnotify-dev (>= 0.6.1),
- libwebkit2gtk-4.0-dev (>= 2.8.1) [!ia64 !kfreebsd-any !sh4]
+ libwebkit2gtk-4.0-dev (>= 2.8.1) [!ia64 !kfreebsd-any !sh4],
+ meson (>= 0.53.0)
Rules-Requires-Root: no
Standards-Version: 4.5.0
Vcs-Browser: https://salsa.debian.org/gnome-team/zenity
diff --git a/debian/rules b/debian/rules
index b43faf6b..b2526814 100755
--- a/debian/rules
+++ b/debian/rules
@@ -6,5 +6,10 @@ export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs
%:
dh $@
+override_dh_auto_configure:
+ dh_auto_configure -- \
+ -Dlibnotify=true \
+ -Dwebkitgtk=true
+
override_dh_missing:
dh_missing --fail-missing
bgstack15