 3152c609a9
			
		
	
	
		3152c609a9
		
			
		
	
	
	
	
		
			
			qubes-rpc has its own Makefile that's responsible for building some executables. The root Makefile was installing qubes-rpc files. To make qubes-rpc a bit more indepdent from core-agent root Makefile and to ease potential maintainer work on packaging qubes-rpc separately, the installation has been moved to qubes-rpc Makefile. Moreover that should make the Makefiles easier to read and maintain.
		
			
				
	
	
		
			32 lines
		
	
	
		
			662 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			662 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/make -f
 | |
| # -*- makefile -*-
 | |
| 
 | |
| # Uncomment this to turn on verbose mode.
 | |
| #export DH_VERBOSE=1
 | |
| export PYTHON_PREFIX_ARG=--install-layout=deb
 | |
| 
 | |
| include /usr/share/dpkg/default.mk
 | |
| export DESTDIR=$(shell pwd)/debian/tmp
 | |
| 
 | |
| %:
 | |
| 	dh $@ --with systemd,python2 --with=config-package
 | |
| 
 | |
| override_dh_auto_build:
 | |
| 	make all
 | |
| 
 | |
| override_dh_auto_install:
 | |
| 	make install-deb
 | |
| 	make -C qubes-rpc install
 | |
| 	make -C qubes-rpc/kde install
 | |
| 	make -C qubes-rpc/nautilus install
 | |
| 	make -C qubes-rpc/thunar install
 | |
| 
 | |
| override_dh_fixperms:
 | |
| 	dh_fixperms -a -Xqfile-unpacker
 | |
| 
 | |
| override_dh_systemd_start:
 | |
| 	dh_systemd_start --no-restart-on-upgrade
 | |
| 
 | |
| override_dh_install:
 | |
| 	dh_install --fail-missing
 |