File: rules

package info (click to toggle)
csoundqt 0.9.4-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 97,888 kB
  • sloc: cpp: 33,681; python: 3,697; xml: 1,941; sh: 314; makefile: 20; perl: 8
file content (34 lines) | stat: -rwxr-xr-x 647 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
#!/usr/bin/make -f

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

include /usr/share/dpkg/default.mk

QT_SELECT = qt5
export QT_SELECT

QMAKE_ARGS = -r qcs.pro \
    "CONFIG += build64 debugger record_support release" \
    INSTALL_DIR=/usr SHARE_DIR=/usr/share \

%:
	dh $@ --parallel

build:
	dh build --parallel

override_dh_auto_configure:
	dh_auto_configure -- $(QMAKE_ARGS)

override_dh_install-arch:
	dh_install -a

override_dh_install-indep:
	dh_install -i
	find $(CURDIR)/debian/csoundqt-examples/usr/share/qutecsound/ -type f -print0 | xargs -0 chmod 644

override_dh_missing:
	dh_missing --fail-missing

.PHONY: build