blob: 87f24e27b986dbddd3b3497761562f6a907579c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/make -f
# -*- mode: makefile; coding: utf-8 -*-
%:
dh $@
override_dh_gnome:
dh_gnome --no-gnome-versions
# In Ubuntu, low-memory-monitor is not in main
override_dh_gencontrol:
ifneq ($(shell dpkg-vendor --query vendor),Ubuntu)
dh_gencontrol -- -Vlmm:Recommends='low-memory-monitor [linux-any]'
else
dh_gencontrol
endif
|