summaryrefslogtreecommitdiff
blob: 5c4b25e9820c7a97b88c84adc333a808d0c3fc52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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"
}