mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2025-12-21 21:17:37 -08:00
Signed-off-by: Alfred Wingate <parona@protonmail.com> Signed-off-by: Arsen Arsenović <arsen@gentoo.org>
31 lines
621 B
Bash
31 lines
621 B
Bash
# Copyright 2022-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
GUILE_COMPAT=( 2-2 3-0 )
|
|
inherit guile
|
|
|
|
DESCRIPTION="An accumulation place for pure-scheme Guile modules"
|
|
HOMEPAGE="http://www.nongnu.org/guile-lib/"
|
|
SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
REQUIRED_USE="${GUILE_REQUIRES_USE}"
|
|
|
|
RDEPEND="${GUILE_DEPS}"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_prepare() {
|
|
guile_src_prepare
|
|
|
|
sed -i -e 's/"guile"/(getenv "GUILE")/' unit-tests/os.process.scm || die
|
|
}
|
|
|
|
src_configure() {
|
|
guile_foreach_impl econf --with-guile-site=yes
|
|
}
|