28 lines
542 B
Bash
28 lines
542 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
AUTOTOOLS_AUTORECONF=1
|
|
|
|
inherit autotools-utils mono-env
|
|
|
|
DESCRIPTION="The F# Compiler"
|
|
HOMEPAGE="https://github.com/fsharp/fsharp"
|
|
SRC_URI="https://github.com/fsharp/fsharp/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE=""
|
|
|
|
MAKEOPTS+=" -j1" #nowarn
|
|
DEPEND="dev-lang/mono"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
AUTOTOOLS_IN_SOURCE_BUILD=1
|
|
|
|
src_install() {
|
|
autotools-utils_src_install
|
|
}
|