blob: 2b085650c79019c9bc0ab7a673fdfb2e93b0006e (
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
37
38
39
40
41
42
43
|
# Copyright 1999-2024 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="
!app-arch/arc
dev-scheme/racket:=[-minimal]
"
DEPEND="
${RDEPEND}
"
DOCS=( copyright how-to-run-news )
src_compile() {
# Byte-compile Racket modules.
local mod=""
for mod in ac brackets ; do
raco make --vv "./${mod}.scm" || die "raco failed to compile ${mod}"
done
}
src_install() {
einstalldocs
rm "${DOCS[@]}" || die
insinto "/usr/share/${PN}"
doins -r ./*
make_wrapper "${PN}" "racket --load ./as.scm" "/usr/share/${PN}"
}
|