File: rules

package info (click to toggle)
gnome-packagekit 3.32.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 13,508 kB
  • sloc: ansic: 8,550; xml: 129; python: 89; sh: 74; makefile: 25
file content (39 lines) | stat: -rwxr-xr-x 1,189 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/make -f
#export DH_VERBOSE=1

DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)

ifeq ($(DEB_HOST_ARCH_OS), linux)
	GPK_CONFIGURE_FLAGS = -Dsystemd=true
else
	GPK_CONFIGURE_FLAGS = -Dsystemd=false
endif

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- $(GPK_CONFIGURE_FLAGS)

override_dh_install:
	# we don't ship the gpk-prefs .desktop file, since this tool can be accessed through the main application
	# and we might want to have users use software-properties instead if it is available.
	rm debian/tmp/usr/share/applications/gpk-prefs.desktop

	# this .desktop file refers to a binary that is no longer built, and should probably also be removed upstream
	rm debian/tmp/usr/share/applications/gpk-install-local-file.desktop
	dh_install

override_dh_missing:
	dh_missing --fail-missing

override_dh_auto_test:
ifeq ($(filter nocheck,$(DEB_BUILD_OPTIONS)),)
	xvfb-run dh_auto_test
endif

override_dh_installdocs:
	dh_installdocs
	mkdir -p debian/gnome-packagekit/usr/share/doc/gnome-packagekit
	appstream-util appdata-to-news $(CURDIR)/*/data/appdata/org.gnome.Packages.appdata.xml \
	> debian/gnome-packagekit/usr/share/doc/gnome-packagekit/NEWS