1
0
Fork 0
meta-gnome3/debian/rules
Daniel Baumann f8e63e297d
Adding debian version 1:48+2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-22 21:46:58 +02:00

19 lines
570 B
Makefile
Executable file

#!/usr/bin/make -f
# -*- mode: makefile; coding: utf-8 -*-
%:
dh $@
# In Ubuntu, low-memory-monitor is not in main
# Loupe isn't built on Ubuntu's armhf currently
# By the way, architecture restraints don't work when used
# as a relationship from an Architecture: all binary package
override_dh_gencontrol:
ifneq ($(shell dpkg-vendor --query vendor),Ubuntu)
dh_gencontrol -- \
-Vlmm:Recommends='low-memory-monitor [linux-any]' \
-Vloupe:Depends='loupe (>= 47)'
else
dh_gencontrol -- \
-Vloupe:Depends='loupe (>= 47) [amd64 arm64 ppc64el riscv64 s390x]'
endif