File: rules

package info (click to toggle)
harvest-tools 1.3-4
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 23,244 kB
  • sloc: cpp: 5,063; python: 216; makefile: 71; ansic: 7; sh: 1
file content (18 lines) | stat: -rwxr-xr-x 429 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/make -f

# DH_VERBOSE := 1

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@

# dh autodetection tries python-distutils which is not avialable in dh 12
override_dh_auto_clean:
	if [ -f Makefile ] ; then make clean ; fi

override_dh_auto_configure:
	dh_auto_configure -- --with-protobuf=/usr --with-capnp=/usr

override_dh_auto_install:
	echo "do nothing since upstream is just symlinking against build tree"