45 lines
		
	
	
		
			956 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			956 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
# Copyright 2012 Nikolay Orlyuk
 | 
						|
# Distributed under the terms of the GNU General Public License v2
 | 
						|
 | 
						|
require github
 | 
						|
 | 
						|
SUMMARY="The F# compiler, core library and core tools (open source edition)"
 | 
						|
 | 
						|
LICENCES="Apache-2.0"
 | 
						|
SLOT="0"
 | 
						|
PLATFORMS="~amd64"
 | 
						|
MYOPTIONS=""
 | 
						|
 | 
						|
DEPENDENCIES="
 | 
						|
    build:
 | 
						|
        virtual/pkg-config
 | 
						|
    build+run:
 | 
						|
        dev-lang/mono[>=4.2.2.30-r1]
 | 
						|
"
 | 
						|
 | 
						|
BUGS_TO="virkony@gmail.com"
 | 
						|
 | 
						|
DEFAULT_SRC_COMPILE_PARAMS=( -j1 )
 | 
						|
 | 
						|
src_compile() {
 | 
						|
    # uses NuGet to build, no easy way around,
 | 
						|
    # unless you like the alternative in e.g. games-strategy/openra
 | 
						|
    esandbox disable_net
 | 
						|
    default
 | 
						|
    esandbox enable_net
 | 
						|
}
 | 
						|
 | 
						|
src_install() {
 | 
						|
    esandbox disable_net
 | 
						|
    default
 | 
						|
    esandbox enable_net
 | 
						|
 | 
						|
    dodir /usr/$(exhost --target)
 | 
						|
    edo mv "${IMAGE}"/usr/lib "${IMAGE}"/usr/$(exhost --target)/lib
 | 
						|
    edo mv "${IMAGE}"/usr/bin "${IMAGE}"/usr/$(exhost --target)/bin
 | 
						|
 | 
						|
    # delete empty directories
 | 
						|
    edo find "${IMAGE}" -type d -empty -delete
 | 
						|
}
 | 
						|
 |