gentoo/dev-scheme/guile-lib/guile-lib-0.2.7-r100.ebuild
Alfred Wingate 5787b1ad11
dev-scheme/guile-lib: switch to new guile mechanism
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Signed-off-by: Arsen Arsenović <arsen@gentoo.org>
2024-09-18 15:06:35 +02:00

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
}