File: rules

package info (click to toggle)
gtkextra 3.3.4-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 10,580 kB
  • sloc: ansic: 60,728; xml: 28,485; sh: 4,758; makefile: 476
file content (25 lines) | stat: -rwxr-xr-x 512 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
#!/usr/bin/make -f
# -*- makefile -*-

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

export DEB_BUILD_HARDENING=1

# This has to be exported to make some magic below work.
export DH_OPTIONS


%:
	dh $@ 

override_dh_clean:
	dh_clean
	rm -f docs/tutorial/html/*.html

override_dh_install:
	dh_install
	# do not fail if the directory debian/libgtkextra-3.0-doc
	# does not exist (as in Debian compile farm)
	find debian/libgtkextra-3.0-doc -type f -executable \
	  -exec chmod 644 {} \; || true;