blob: 01145fff6bd4c370ef8d4c51ed5ce43f77599138 (
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
35
36
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit wrapper
DESCRIPTION="New dialect of Lisp, works well for web applications"
HOMEPAGE="http://www.arclanguage.org/"
SRC_URI="http://www.arclanguage.org/${PN}${PV}.tar -> ${P}.tar"
S="${WORKDIR}/${PN}${PV}"
LICENSE="Artistic-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="dev-scheme/racket:="
DEPEND="${RDEPEND}"
src_compile() {
# byte-compile some racket modules
local mod
for mod in ac brackets ; do
raco make --vv ./${mod}.scm
done
}
src_install() {
dodoc copyright how-to-run-news
rm copyright how-to-run-news || die
insinto /usr/share/${PN}
doins -r *
make_wrapper ${PN} "racket --load ./as.scm" /usr/share/${PN}
}
|