diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-08-27 16:35:07 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-08-27 17:04:09 +0200 |
commit | 032868896dae09e5e0411b3b53ed3de693d398ec (patch) | |
tree | 847acdebd2d088966ecc3b7d2dd0c8a8923fa452 /dev-scheme | |
parent | dev-scheme/cyclone: bump to 0.35.0 (diff) | |
download | gentoo-032868896dae09e5e0411b3b53ed3de693d398ec.tar.gz gentoo-032868896dae09e5e0411b3b53ed3de693d398ec.tar.bz2 gentoo-032868896dae09e5e0411b3b53ed3de693d398ec.zip |
dev-scheme/cyclone: sync live
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'dev-scheme')
-rw-r--r-- | dev-scheme/cyclone/cyclone-9999.ebuild | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/dev-scheme/cyclone/cyclone-9999.ebuild b/dev-scheme/cyclone/cyclone-9999.ebuild index 12a81a63780a..23bf9fb347ee 100644 --- a/dev-scheme/cyclone/cyclone-9999.ebuild +++ b/dev-scheme/cyclone/cyclone-9999.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # Cyclone is a self-hosting Scheme to C compiler -# cyclone-bootstrap is the Cyclone SOURCE transpiled by it to C +# cyclone-bootstrap is the Cyclone source transpiled by it to C. EAPI=8 @@ -11,13 +11,13 @@ inherit flag-o-matic toolchain-funcs DESCRIPTION="R7RS Scheme to C compiler" HOMEPAGE="http://justinethier.github.io/cyclone/" -if [[ "${PV}" == *9999* ]]; then +if [[ ${PV} == *9999* ]] ; then inherit git-r3 EGIT_REPO_URI="https://github.com/justinethier/${PN}-bootstrap.git" else - SRC_URI="https://github.com/justinethier/${PN}-bootstrap/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~x86" - S="${WORKDIR}/${PN}-bootstrap-${PV}" + SRC_URI="https://github.com/justinethier/${PN}-bootstrap/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" + S="${WORKDIR}"/${PN}-bootstrap-${PV} fi LICENSE="MIT" @@ -49,7 +49,6 @@ src_test() { } src_install() { - einstalldocs - emake PREFIX="/usr" DESTDIR="${D}" install + einstalldocs } |