mirror of
				https://github.com/vcmi/vcmi.git
				synced 2025-10-31 00:07:39 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			505 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			505 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
| #! /usr/bin/make -f
 | |
| 
 | |
| %:
 | |
| 	dh $@
 | |
| 
 | |
| # override disabled by default rpath - we need to find libvcmi.so with it:
 | |
| override_dh_auto_configure:
 | |
| 	dh_auto_configure -- \
 | |
| 		-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=ON \
 | |
| 		-DCMAKE_INSTALL_RPATH=/usr/lib/$(DEB_HOST_MULTIARCH)/vcmi \
 | |
| 		-DBIN_DIR=games \
 | |
| 		-DFORCE_BUNDLED_FL=OFF \
 | |
| 		-DENABLE_TEST=0
 | |
| 
 | |
| override_dh_strip:
 | |
| 	dh_strip --dbg-package=vcmi-dbg
 | |
| override_dh_auto_install:
 | |
| 	dh_auto_install --destdir=debian/vcmi
 | |
| override_dh_installdocs:
 | |
| 	dh_installdocs --link-doc=vcmi
 | |
| 
 |