File: rules

package info (click to toggle)
imvirt 0.9.6-13
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,364 kB
  • sloc: perl: 2,778; sh: 802; ansic: 316; makefile: 61
file content (22 lines) | stat: -rwxr-xr-x 501 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
#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@

override_dh_auto_configure:
	dh_auto_configure -- --libexec=/usr/lib

override_dh_auto_test:

override_dh_install:
	dh_install
ifneq (,$(findstring linux,$(DEB_HOST_ARCH_OS)))
ifneq (,$(findstring i386,$(DEB_HOST_ARCH)))
	dh_install -pimvirt-helper "debian/tmp/usr/lib/imvirt/" "usr/lib/"
endif
ifneq (,$(findstring amd64,$(DEB_HOST_ARCH)))
	dh_install -pimvirt-helper "debian/tmp/usr/lib/imvirt/" "usr/lib/"
endif
endif