2020-11-13 09:59:30 +01:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
2020-12-15 13:05:13 +01:00
|
|
|
export DH_VERBOSE=1
|
|
|
|
|
2020-11-13 09:59:30 +01:00
|
|
|
%:
|
|
|
|
dh $@
|
|
|
|
|
2020-12-15 13:05:13 +01:00
|
|
|
override_dh_auto_clean:
|
|
|
|
dh_auto_clean
|
|
|
|
|
2020-11-13 09:59:30 +01:00
|
|
|
override_dh_auto_build:
|
2020-12-15 13:05:13 +01:00
|
|
|
# The ooniprobe binary is provided
|
2020-11-13 09:59:30 +01:00
|
|
|
|
|
|
|
override_dh_dwz:
|
|
|
|
true
|
|
|
|
|
2021-10-22 15:14:11 +02:00
|
|
|
override_dh_strip:
|
|
|
|
# We cross compile and build packages for any arch from
|
|
|
|
# linux/amd64 so we need to avoid this step. BTW this step
|
|
|
|
# is not needed because we already strip when building.
|
|
|
|
true
|
|
|
|
|
|
|
|
override_dh_makeshlibs:
|
|
|
|
# We cross compile and build packages for any arch from
|
|
|
|
# linux/amd64 so we need to avoid this step. BTW this step
|
|
|
|
# is not needed because we don't have any shlib.
|
|
|
|
true
|
|
|
|
|
2020-11-13 09:59:30 +01:00
|
|
|
override_dh_auto_install:
|
|
|
|
dh_auto_install -- --no-source
|