File: rules

package info (click to toggle)
weborf 1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,132 kB
  • sloc: sh: 4,760; ansic: 3,485; python: 762; makefile: 116; xml: 44
file content (23 lines) | stat: -rwxr-xr-x 448 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/make -f

SHELL=sh -e

export DEB_BUILD_MAINT_OPTIONS = hardening=+all
# DPKG_EXPORT_BUILDFLAGS = 1
# include /usr/share/dpkg/buildflags.mk

export DH_VERBOSE=1

%:
	dh $@ --with python3

override_dh_installinit:
	dh_installinit -pweborf-daemon --onlyscripts --init-script=weborf

override_dh_auto_install:
	make -C qweborf install DESTDIR=../debian/qweborf
	dh_auto_install

override_dh_auto_clean:
	make -C qweborf clean
	dh_auto_clean