File: rules

package info (click to toggle)
amarok 3.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 112,176 kB
  • sloc: cpp: 195,056; xml: 4,322; ansic: 2,634; javascript: 673; ruby: 528; python: 507; sh: 252; makefile: 12
file content (22 lines) | stat: -rwxr-xr-x 525 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

override_dh_auto_configure:
	dh_auto_configure -Skf5 -- -DBUILD_TESTING=false

override_dh_bugfiles:
	dh_bugfiles -A

execute_after_dh_install-indep:
	# Copy errmsg.sys files from mariadb-server-core package
	debian/copy-errmsg-files.py /usr/share/mariadb debian/amarok-common/usr/share/amarok/mysqle

execute_after_dh_auto_install:
	# Remove development stuff
	find debian/tmp -name '*.so' -type l -print -delete

%:
	dh $@

.PHONY: override_dh_auto_test