forked from hasufell/hasufell-repository
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			595 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			595 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| # Copyright 2019 Julian Ospald <hasufell@posteo.de>
 | |
| # Distributed under the terms of the GNU General Public License v2
 | |
| 
 | |
| require cargo [ channel=stable ]
 | |
| require github [ user=Peltoche tag="${PV}" ]
 | |
| 
 | |
| SUMMARY="The next gen ls command"
 | |
| HOMEPAGE="https://crates.io/crates/lsd ${HOMEPAGE}"
 | |
| 
 | |
| LICENCES="Apache-2.0"
 | |
| SLOT="0"
 | |
| PLATFORMS="~amd64 ~x86"
 | |
| MYOPTIONS=""
 | |
| 
 | |
| DEPENDENCIES="
 | |
| "
 | |
| 
 | |
| BUGS_TO="hasufell@posteo.de"
 | |
| 
 | |
| src_test() {
 | |
|     local test_socket="unix:${TEMP}/test_socket_type.*/socket.tmp"
 | |
|     esandbox allow_net --bind "${test_socket}"
 | |
|     cargo_src_test
 | |
|     esandbox disallow_net "${test_socket}"
 | |
| }
 | |
| 
 |