diff options
author | Alfred Wingate <parona@protonmail.com> | 2024-08-26 20:28:01 +0300 |
---|---|---|
committer | Arsen Arsenović <arsen@gentoo.org> | 2024-09-18 15:06:32 +0200 |
commit | c4e2638d4c2dd26ac7f5b900d59e098a939bd764 (patch) | |
tree | 18d4457b9c30f05deb30475afa193efcd68c2134 /dev-scheme | |
parent | dev-scheme/akku: use better compression (diff) | |
download | gentoo-c4e2638d4c2dd26ac7f5b900d59e098a939bd764.tar.gz gentoo-c4e2638d4c2dd26ac7f5b900d59e098a939bd764.tar.bz2 gentoo-c4e2638d4c2dd26ac7f5b900d59e098a939bd764.zip |
dev-scheme/bytestructures: switch to new guile mechanism
Signed-off-by: Alfred Wingate <parona@protonmail.com>
Signed-off-by: Arsen Arsenović <arsen@gentoo.org>
Diffstat (limited to 'dev-scheme')
-rw-r--r-- | dev-scheme/bytestructures/bytestructures-2.0.2-r100.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/dev-scheme/bytestructures/bytestructures-2.0.2-r100.ebuild b/dev-scheme/bytestructures/bytestructures-2.0.2-r100.ebuild new file mode 100644 index 000000000000..1739ac8b7c62 --- /dev/null +++ b/dev-scheme/bytestructures/bytestructures-2.0.2-r100.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +GUILE_COMPAT=( 2-2 3-0 ) +inherit autotools guile + +DESCRIPTION="Structured access to bytevector contents" +HOMEPAGE="https://github.com/TaylanUB/scheme-bytestructures/" +SRC_URI="https://github.com/TaylanUB/scheme-${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/scheme-${P}" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +REQUIRED_USE="${GUILE_REQUIRED_USE}" + +RDEPEND="${GUILE_DEPS}" +DEPEND="${RDEPEND}" + +src_prepare() { + guile_src_prepare + eautoreconf +} |