diff -pruN 0.7.2-6/debian/changelog 0.7.2-6ubuntu1/debian/changelog
--- 0.7.2-6/debian/changelog	2024-10-20 09:22:47.000000000 +0000
+++ 0.7.2-6ubuntu1/debian/changelog	2025-11-24 19:28:04.000000000 +0000
@@ -1,3 +1,15 @@
+budgie-indicator-applet (0.7.2-6ubuntu1) resolute; urgency=medium
+
+  * Add patch 0001-Add-with-budgie-typelib-version-compile-time-option-.patch
+    to allow building against different typelib versions
+  * d/rules build with budgie-3.0, and install in a multiarch location
+  * d/control - remove unneeded B/D against debhelper,
+    build with libpeas-2-dev and remove restriction test on
+    budgie-core-dev version since the typelib version is applicable
+  * d/copyright - update fsf address
+
+ -- David Mohammed <fossfreedom@ubuntu.com>  Mon, 24 Nov 2025 19:28:04 +0000
+
 budgie-indicator-applet (0.7.2-6) unstable; urgency=medium
 
   * Packaging updates
diff -pruN 0.7.2-6/debian/control 0.7.2-6ubuntu1/debian/control
--- 0.7.2-6/debian/control	2024-10-20 09:22:47.000000000 +0000
+++ 0.7.2-6ubuntu1/debian/control	2025-11-24 19:28:04.000000000 +0000
@@ -2,15 +2,14 @@ Source: budgie-indicator-applet
 Section: misc
 Priority: optional
 Maintainer: David Mohammed <fossfreedom@ubuntu.com>
-Build-Depends: debhelper (>= 13),
-               debhelper-compat (= 13),
+Build-Depends: debhelper-compat (= 13),
                dpkg-dev (>= 1.18.4),
                intltool,
                libtool,
                libgtk-3-dev,
                libayatana-indicator3-dev,
-               libpeas-dev,
-               budgie-core-dev (>= 10.4),
+               libpeas-2-dev,
+               budgie-core-dev,
                libayatana-ido3-dev
 Standards-Version: 4.7.0
 Rules-Requires-Root: no
diff -pruN 0.7.2-6/debian/copyright 0.7.2-6ubuntu1/debian/copyright
--- 0.7.2-6/debian/copyright	2022-03-18 16:02:47.000000000 +0000
+++ 0.7.2-6ubuntu1/debian/copyright	2025-11-24 19:28:04.000000000 +0000
@@ -37,8 +37,8 @@ License: GPL-3
  Lesser General Public License for more details.
  .
  You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ License along with this library; if not, see
+ <https://www.gnu.org/licenses/>.
  .
  On Debian systems, the complete text of the GNU General
  Public License can be found in `/usr/share/common-licenses/GPL-3'.
diff -pruN 0.7.2-6/debian/patches/0001-Add-with-budgie-typelib-version-compile-time-option-.patch 0.7.2-6ubuntu1/debian/patches/0001-Add-with-budgie-typelib-version-compile-time-option-.patch
--- 0.7.2-6/debian/patches/0001-Add-with-budgie-typelib-version-compile-time-option-.patch	1970-01-01 00:00:00.000000000 +0000
+++ 0.7.2-6ubuntu1/debian/patches/0001-Add-with-budgie-typelib-version-compile-time-option-.patch	2025-11-24 19:28:04.000000000 +0000
@@ -0,0 +1,81 @@
+Applied-Upstream: commit: a93c12fd390aa81a9fc548c1763d2d9c749e4c9e
+Author: David Mohammed <fossfreedom@ubuntu.com>
+Last-Update: 2025-11-24
+Description: [PATCH] Add --with-budgie-typelib-version compile time option to
+ support compilation with different typelibs
+
+---
+ configure.ac | 19 +++++++++++++------
+ 1 file changed, 13 insertions(+), 6 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 00615cc..535db85 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -12,11 +12,19 @@ AC_CONFIG_MACRO_DIR([m4])
+ 
+ m4_define([budgie_required_version], [1])
+ 
++# Optional configure flag to override the Budgie typelib version (default: 1.0)
++AC_ARG_WITH([budgie-typelib-version],
++  AS_HELP_STRING([--with-budgie-typelib-version=VERSION],
++    [Specify Budgie typelib version (default: 1.0)]),
++  [BUDGIE_TYPELIB_VERSION="$withval"],
++  [BUDGIE_TYPELIB_VERSION="1.0"])
++AC_SUBST([BUDGIE_TYPELIB_VERSION])
++
+ # Note budgie-1.0 depends on peas, gtk, etc. Sorta your package managers
+ # business to make sure those deps are satisfied.
+ # Also note this is just for the C and Vala subprojects!
+ PKG_CHECK_MODULES(BUDGIE_PLUGIN,
+-        budgie-1.0 >= budgie_required_version
++        budgie-$BUDGIE_TYPELIB_VERSION >= budgie_required_version
+ )
+ 
+ UBUNTU_INDICATOR_API_VERSION=3
+@@ -46,7 +54,6 @@ AC_ARG_WITH([ubuntu-indicators],
+ ###
+ ### Look for Ayatana Indicators
+ ###
+-
+ PKG_CHECK_EXISTS(ayatana-indicator3-0.4,
+                  [have_ayatanaindicator="yes"],
+                  [have_ayatanaindicator="no"])
+@@ -58,7 +65,6 @@ PKG_CHECK_EXISTS(ayatana-indicator3-0.4 >= $AYATANA_INDICATOR_NG_VERSION,
+ ###
+ ### Look for Ubuntu Indicators
+ ###
+-
+ PKG_CHECK_EXISTS(indicator3-0.4,
+                  [have_ubuntuindicator="yes"],
+                  [have_ubuntuindicator="no"])
+@@ -119,8 +125,9 @@ else
+ 
+ fi
+ 
++###
+ ### prepare Ayatana or Ubuntu Indicators implementation for the build, regarding to the decision reached above...
+-
++###
+ if   test "x$use_ayatanaindicator" = "xyes"; then
+ 
+     AM_CONDITIONAL(WITH_AYATANA_INDICATOR, true)
+@@ -195,7 +202,7 @@ AC_OUTPUT
+ AC_MSG_RESULT([
+         budgie-indicator-applet $VERSION
+         ========
+-
++        Budgie typelib version:  ${BUDGIE_TYPELIB_VERSION}
+         prefix:                 ${prefix}
+         libdir:                 ${libdir}
+         sysconfdir:             ${sysconfdir}
+@@ -206,4 +213,4 @@ AC_MSG_RESULT([
+         compiler:               ${CC}
+         cflags:                 ${CFLAGS}
+         ldflags:                ${LDFLAGS}
+-])
++])
+\ No newline at end of file
+-- 
+2.51.0
+
diff -pruN 0.7.2-6/debian/patches/series 0.7.2-6ubuntu1/debian/patches/series
--- 0.7.2-6/debian/patches/series	2024-07-04 09:43:35.000000000 +0000
+++ 0.7.2-6ubuntu1/debian/patches/series	2025-11-24 19:27:55.000000000 +0000
@@ -1,2 +1,3 @@
 Revert-hiding-of-chrome-icons-now-that-they-have-res.patch
 0001-GCC-14-requires-pointer-types-to-be-explicitly-defin.patch
+0001-Add-with-budgie-typelib-version-compile-time-option-.patch
diff -pruN 0.7.2-6/debian/rules 0.7.2-6ubuntu1/debian/rules
--- 0.7.2-6/debian/rules	2022-02-06 11:41:32.000000000 +0000
+++ 0.7.2-6ubuntu1/debian/rules	2025-11-24 19:28:04.000000000 +0000
@@ -13,7 +13,7 @@ INDICATOR_IMPLEMENTATION=--with-ayatana-
 	dh $@
 	
 override_dh_auto_configure:
-	dh_auto_configure -- --prefix=/usr --libdir=/usr/lib $(INDICATOR_IMPLEMENTATION)
+	dh_auto_configure -- --prefix=/usr $(INDICATOR_IMPLEMENTATION) --with-budgie-typelib-version=3.0
 
 override_dh_auto_install:
 	dh_auto_install
