18 lines
		
	
	
		
			426 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			426 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/make -f
 | 
						|
# Uncomment this to turn on verbose mode.
 | 
						|
#export DH_VERBOSE=1
 | 
						|
#export DH_OPTIONS=-v
 | 
						|
 | 
						|
%:
 | 
						|
	dh $@ --with python2
 | 
						|
 | 
						|
# Remove COPYING file (duplicates standard copyright)
 | 
						|
override_dh_install:
 | 
						|
	dh_install
 | 
						|
	# Need COPYING file into About dialog
 | 
						|
	#rm debian/gramps/usr/share/gramps/COPYING
 | 
						|
 | 
						|
# Test packager mode to avoid installing mime type
 | 
						|
override_dh_auto_configure:
 | 
						|
	dh_auto_configure -- --enable-packager-mode
 |