You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-lang/niecza-bin/niecza-bin-24.ebuild

35 lines
849 B

# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/niecza-bin/niecza-bin-24.ebuild,v 1.1 2012/12/05 07:08:47 patrick Exp $
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="https://github.com/downloads/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"
}