| 1 |
# Copyright 1999-2012 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/dev-lang/niecza-bin/niecza-bin-20.ebuild,v 1.1 2012/08/22 03:28:07 patrick Exp $ |
| 4 |
|
| 5 |
EAPI=4 |
| 6 |
|
| 7 |
inherit eutils multilib |
| 8 |
|
| 9 |
DESCRIPTION="A Perl 6 compiler targetting the CLR with an experimental focus on optimizations." |
| 10 |
HOMEPAGE="https://github.com/sorear/niecza" |
| 11 |
|
| 12 |
MY_PN="niecza" |
| 13 |
MY_P="${MY_PN}-${PV}" |
| 14 |
SRC_URI="https://github.com/downloads/sorear/${MY_PN}/${MY_P}.zip" |
| 15 |
|
| 16 |
LICENSE="Artistic-2" |
| 17 |
SLOT="0" |
| 18 |
KEYWORDS="~amd64 ~x86" |
| 19 |
IUSE="" |
| 20 |
|
| 21 |
RDEPEND="dev-lang/mono" |
| 22 |
DEPEND="${RDEPEND}" |
| 23 |
|
| 24 |
S=${WORKDIR} |
| 25 |
|
| 26 |
src_configure() { :; } |
| 27 |
|
| 28 |
src_compile() { :; } |
| 29 |
|
| 30 |
src_install() { |
| 31 |
mkdir ${D}/opt/niecza-bin -p |
| 32 |
cp -r ${WORKDIR}/* ${D}/opt/niecza-bin || die "Failed to copy" |
| 33 |
einfo "The binary is installed to /opt/niecza-bin/run/Niecza.exe" |
| 34 |
} |