as else the docs .pdf is a PITA to use for some endusers.. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/make -f
 | 
						|
# See debhelper(7) (uncomment to enable)
 | 
						|
# output every command that modifies files on the build system.
 | 
						|
DH_VERBOSE = 1
 | 
						|
 | 
						|
include /usr/share/dpkg/pkg-info.mk
 | 
						|
include /usr/share/rustc/architecture.mk
 | 
						|
 | 
						|
export BUILD_MODE=release
 | 
						|
 | 
						|
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
 | 
						|
 | 
						|
%:
 | 
						|
	dh $@ --with=bash-completion
 | 
						|
 | 
						|
override_dh_auto_configure:
 | 
						|
	$(CARGO) prepare-debian $(CURDIR)/debian/cargo_registry --link-from-system
 | 
						|
	dh_auto_configure
 | 
						|
 | 
						|
override_dh_auto_build:
 | 
						|
	dh_auto_build -- \
 | 
						|
	    PROXY_USER=backup \
 | 
						|
	    LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH)
 | 
						|
 | 
						|
override_dh_missing:
 | 
						|
	dh_missing --fail-missing
 | 
						|
 | 
						|
override_dh_auto_install:
 | 
						|
	dh_auto_install -- \
 | 
						|
	    PROXY_USER=backup \
 | 
						|
	    LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH)
 | 
						|
 | 
						|
override_dh_installsystemd:
 | 
						|
	# note: we start/try-reload-restart services manually in postinst
 | 
						|
	dh_installsystemd --no-start --no-restart-after-upgrade
 | 
						|
 | 
						|
# 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
 | 
						|
 | 
						|
override_dh_compress:
 | 
						|
	dh_compress -X.pdf
 |