blob: 82dbe58277f84d51612f89a17dd075c3a04c0d89 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
MY_P=${PN}_${PV}
DESCRIPTION="ARMPIT SCHEME is an interpreter for the Scheme language (lexically-scoped dialect of Lisp) that runs on RISC microcontrollers with ARM core."
HOMEPAGE="http://armpit.sourceforge.net/"
SRC_URI="mirror://sourceforge/armpit/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~arm"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}"
src_compile() {
die "I can't test this"
}
src_install() {
die "I can't test this"
}
|