37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/make -f
 | |
| 
 | |
| # Uncomment this to turn on verbose mode.
 | |
| export DH_VERBOSE=1
 | |
| export DH_OPTIONS=-v
 | |
| 
 | |
| %:
 | |
| 	dh $@ --with python3 --buildsystem=pybuild
 | |
| 
 | |
| # Override auto test because upstream do not use the standard unittest discover
 | |
| override_dh_auto_test:
 | |
| 
 | |
| # Override of auto_build
 | |
| override_dh_auto_build:
 | |
| 	python3 setup.py build
 | |
| 
 | |
| # Override of auto_install to remove information from package
 | |
| override_dh_auto_install:
 | |
| 	#dh_auto_install
 | |
| 	python3 setup.py install --resourcepath=/usr/share --root=debian/python3-gramps --install-layout=deb
 | |
| 	# Remove duplicate copyright information
 | |
| 	rm $(CURDIR)/debian/python3-gramps/usr/share/doc/gramps/COPYING
 | |
| 	# Remove install file as it is not needed by package users
 | |
| 	rm $(CURDIR)/debian/python3-gramps/usr/share/doc/gramps/INSTALL
 | |
| 	# Remove duplicate license information
 | |
| 	rm $(CURDIR)/debian/python3-gramps/usr/share/doc/gramps/LICENSE
 | |
| 	ln -s /usr/share/common-licenses/GPL-2 $(CURDIR)/debian/python3-gramps/usr/share/doc/gramps/COPYING
 | |
| 
 | |
| # Make css style sheets and png icons non-executable
 | |
| override_dh_fixperms:
 | |
| 	dh_fixperms
 | |
| 	chmod a-x $(CURDIR)/debian/python3-gramps/usr/share/gramps/css/Web_*.css
 | |
| 
 | |
| # Avoid compressing COPYING file so that it can appear in the "About" dialog
 | |
| override_dh_compress:
 | |
| 	dh_compress -X COPYING
 |