2018-11-30 12:39:40 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
# See debhelper(7) (uncomment to enable)
|
|
|
|
# output every command that modifies files on the build system.
|
2019-12-20 08:34:14 +00:00
|
|
|
DH_VERBOSE = 1
|
|
|
|
|
|
|
|
include /usr/share/dpkg/pkg-info.mk
|
|
|
|
include /usr/share/rustc/architecture.mk
|
2018-11-30 12:39:40 +00:00
|
|
|
|
2019-01-31 15:11:09 +00:00
|
|
|
export BUILD_MODE=release
|
2018-11-30 12:39:40 +00:00
|
|
|
|
2019-12-20 08:34:14 +00:00
|
|
|
CARGO=/usr/share/cargo/bin/cargo
|
|
|
|
|
|
|
|
export CFLAGS CXXFLAGS CPPFLAGS LDFLAGS
|
|
|
|
export DEB_HOST_RUST_TYPE DEB_HOST_GNU_TYPE
|
|
|
|
export CARGO_HOME = $(CURDIR)/debian/cargo_home
|
|
|
|
|
|
|
|
export DEB_CARGO_CRATE=proxmox-backup_$(DEB_VERSION_UPSTREAM)
|
|
|
|
export DEB_CARGO_PACKAGE=proxmox-backup
|
|
|
|
|
2018-11-30 12:39:40 +00:00
|
|
|
%:
|
2019-11-11 07:35:33 +00:00
|
|
|
dh $@ --with=bash-completion
|
2018-11-30 12:39:40 +00:00
|
|
|
|
2019-12-20 08:34:14 +00:00
|
|
|
override_dh_auto_configure:
|
|
|
|
$(CARGO) prepare-debian $(CURDIR)/debian/cargo_registry --link-from-system
|
|
|
|
dh_auto_configure
|
|
|
|
|
2019-01-31 14:42:47 +00:00
|
|
|
override_dh_auto_build:
|
|
|
|
dh_auto_build -- \
|
2019-02-16 08:29:04 +00:00
|
|
|
PROXY_USER=backup \
|
2019-01-31 14:42:47 +00:00
|
|
|
LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH)
|
|
|
|
|
2019-11-11 07:35:33 +00:00
|
|
|
override_dh_missing:
|
|
|
|
dh_missing --fail-missing
|
|
|
|
|
2019-01-31 14:42:47 +00:00
|
|
|
override_dh_auto_install:
|
|
|
|
dh_auto_install -- \
|
2019-02-16 08:29:04 +00:00
|
|
|
PROXY_USER=backup \
|
2019-01-31 14:42:47 +00:00
|
|
|
LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH)
|
2019-01-28 12:17:03 +00:00
|
|
|
|
2020-06-22 07:39:37 +00:00
|
|
|
override_dh_installsystemd:
|
|
|
|
# note: we start/try-reload-restart services manually in postinst
|
|
|
|
dh_installsystemd --no-start --no-restart-after-upgrade
|
2019-12-16 15:38:00 +00:00
|
|
|
|
|
|
|
# workaround https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=933541
|
|
|
|
# TODO: remove once available (Debian 11 ?)
|
|
|
|
override_dh_dwz:
|
|
|
|
dh_dwz --no-dwz-multifile
|