mirror of
				https://github.com/choff/anbox-modules.git
				synced 2025-10-31 13:55:51 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			781 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			781 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/make -f
 | |
| # -*- makefile -*-
 | |
| 
 | |
| # Uncomment this to turn on verbose mode.
 | |
| #export DH_VERBOSE=1
 | |
| 
 | |
| VERSION=$(shell dpkg-parsechangelog -SVersion)
 | |
| 
 | |
| # include /usr/share/dpkg/default.mk
 | |
| 
 | |
| %:
 | |
| 	dh $@ --parallel --fail-missing --with systemd
 | |
| 
 | |
| override_dh_auto_configure:
 | |
| 
 | |
| override_dh_auto_build:
 | |
| 
 | |
| override_dh_install:
 | |
| 	VERSION=$(shell dpkg-parsechangelog -SVersion)
 | |
| 	install -d $(CURDIR)/debian/tmp/usr/src
 | |
| 	for d in ashmem binder ; do \
 | |
| 		cp -a $(CURDIR)/$$d $(CURDIR)/debian/tmp/usr/src/anbox-modules-$$d-$(VERSION) ; \
 | |
| 	done
 | |
| 
 | |
| 	install -d $(CURDIR)/debian/tmp/lib/udev/rules.d
 | |
| 	install -m 0644 99-anbox.rules $(CURDIR)/debian/tmp/lib/udev/rules.d
 | |
| 
 | |
| 	install -d $(CURDIR)/debian/tmp/etc/modules-load.d
 | |
| 	install -m 0644 anbox.conf $(CURDIR)/debian/tmp/etc/modules-load.d
 | |
| 
 | |
| 	dh_install
 | 
