mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-16 07:01:08 +00:00
Signed-off-by: Kacper Słomiński <kacper.slominski72@gmail.com> Part-of: https://github.com/gentoo/gentoo/pull/44587 Signed-off-by: Sam James <sam@gentoo.org>
29 lines
627 B
Bash
29 lines
627 B
Bash
# Copyright 2022-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
GUILE_COMPAT=( 2-2 3-0 )
|
|
inherit guile
|
|
|
|
DESCRIPTION="Guile modules for generating parsers and lexical analyzers"
|
|
HOMEPAGE="http://www.nongnu.org/nyacc/"
|
|
SRC_URI="mirror://nongnu/nyacc/nyacc-${PV}.tar.gz"
|
|
S="${WORKDIR}/nyacc-${PV}"
|
|
|
|
LICENSE="LGPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
RDEPEND="
|
|
${GUILE_DEPS}
|
|
>=dev-scheme/bytestructures-2.0.2-r100[${GUILE_USEDEP}]
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
src_install() {
|
|
guile_src_install
|
|
|
|
# Fix docs location
|
|
mv "${ED}"/usr/share/doc/nyacc "${ED}"/usr/share/doc/${PF} || die
|
|
}
|