mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-07-24 16:08:58 +02:00
43 lines
836 B
Bash
43 lines
836 B
Bash
# 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}"
|
|
}
|