mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 10:52:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			485 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			485 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/usr/bin/env -S bash ../.port_include.sh
 | |
| port=RISCVEmu
 | |
| version=ad8ad6a0eb8591385318b2ec1cffde6078ff0185
 | |
| files="https://github.com/IdanHo/RISCVEmu/archive/${version}.tar.gz RISCVEmu-${version}.tar.gz b4636284dd407e490ba6dd783b65caf8c019785285d6a86aece3860465276b33"
 | |
| auth_type="sha256"
 | |
| 
 | |
| build() {
 | |
|     run "${CXX}" -o RISCVEmu RISCVEmu.cpp RISCV.cpp
 | |
| }
 | |
| 
 | |
| install() {
 | |
|     run mkdir -p "${SERENITY_INSTALL_ROOT}/usr/local/bin"
 | |
|     run cp RISCVEmu "${SERENITY_INSTALL_ROOT}/usr/local/bin"
 | |
| }
 | 
