File: rules

package info (click to toggle)
weborf 0.19-2.1%2Bdeb12u1
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 1,140 kB
  • sloc: sh: 4,727; ansic: 3,481; python: 741; makefile: 115; xml: 46
file content (23 lines) | stat: -rwxr-xr-x 448 bytes parent folder | download | duplicates (3)
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