blob: 5c4b25e9820c7a97b88c84adc333a808d0c3fc52 [file] [log] [blame]
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit eutils multilib
DESCRIPTION="A Perl 6 compiler targetting the CLR with an experimental focus on optimizations"
HOMEPAGE="https://github.com/sorear/niecza"
MY_PN="niecza"
MY_P="${MY_PN}-${PV}"
SRC_URI="mirror://github/sorear/${MY_PN}/${MY_P}.zip"
LICENSE="Artistic-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-lang/mono"
DEPEND="${RDEPEND}"
S=${WORKDIR}
src_configure() { :; }
src_compile() { :; }
src_install() {
mkdir "${D}"/opt/niecza-bin -p
cp -r "${WORKDIR}"/* "${D}"/opt/niecza-bin || die "Failed to copy"
einfo "The binary is installed to /opt/niecza-bin/run/Niecza.exe"
}