File: rules

package info (click to toggle)
adwaita-qt 1.4.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,820 kB
  • sloc: cpp: 12,975; makefile: 13
file content (19 lines) | stat: -rwxr-xr-x 489 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f

%:
	dh $@ --with pkgkde_symbolshelper

override_dh_auto_configure:
	dh_auto_configure --builddirectory=build-qt5 -- -DUSE_QT6=OFF
	dh_auto_configure --builddirectory=build-qt6 -- -DUSE_QT6=ON

override_dh_auto_build:
	dh_auto_build --builddirectory=build-qt5
	dh_auto_build --builddirectory=build-qt6

override_dh_auto_install:
	dh_auto_install --builddirectory=build-qt5
	dh_auto_install --builddirectory=build-qt6

override_dh_auto_clean:
	rm -rf build-qt5 build-qt6