Co-authored-by: Guilherme Rugai Freire <41879254+GRFreire@users.noreply.github.com> Co-authored-by: N-R-K <79544946+N-R-K@users.noreply.github.com> Co-authored-by: NRK <nrk@disroot.org> Co-authored-by: Arthur Williams <taaparthur@gmail.com> Co-authored-by: eylles <ed.ylles1997@gmail.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			282 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			282 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PREFIX = /usr/local
 | 
						|
ICONS  = 16x16.png 32x32.png 48x48.png 64x64.png 128x128.png
 | 
						|
 | 
						|
all:
 | 
						|
 | 
						|
install:
 | 
						|
	for f in $(ICONS); do \
 | 
						|
		dir="$(DESTDIR)$(PREFIX)/share/icons/hicolor/$${f%.png}/apps"; \
 | 
						|
		mkdir -p "$$dir"; \
 | 
						|
		cp "$$f" "$$dir/nsxiv.png"; \
 | 
						|
		chmod 644 "$$dir/nsxiv.png"; \
 | 
						|
	done
 |