File: rules

package info (click to toggle)
osm2pgrouting 2.3.6-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,020 kB
  • sloc: cpp: 3,723; python: 3,105; xml: 499; sh: 109; sql: 54; ansic: 46; makefile: 24
file content (41 lines) | stat: -rwxr-xr-x 919 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
40
41
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

# Enable hardening build flags
export DEB_BUILD_MAINT_OPTIONS=hardening=+all

include /usr/share/dpkg/pkg-info.mk

BUILD_DATE=$(shell LC_ALL=C date -u "+%d %B %Y" -d "@$(SOURCE_DATE_EPOCH)")

MANPAGES := $(wildcard debian/man/*.*.xml)

%:
	dh $@ --parallel

override_dh_clean:
	dh_clean debian/man/*.1

override_dh_auto_build:
	# Create man page from DocBook XML
	for x in $(MANPAGES) ; do \
	    docbook2x-man --string-param header-3="$(BUILD_DATE)" $$x ; \
	    mv `basename $$x | sed 's/.xml$$//'` `dirname $$x` ; \
	done

	dh_auto_build

override_dh_auto_install:
	dh_auto_install

	# Don't install extra license file
	$(RM) debian/*/usr/share/osm2pgrouting/COPYING

	# Remove documentation outside usr/share/doc
	$(RM) debian/*/usr/share/osm2pgrouting/Readme.md

override_dh_install:
	dh_install --list-missing