mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-23 18:38:08 -07:00
23 lines
511 B
Bash
23 lines
511 B
Bash
# Copyright 1999-2026 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=9
|
|
|
|
DESCRIPTION="Lua eselect module"
|
|
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
|
|
S=${WORKDIR}
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~x64-macos ~x64-solaris"
|
|
|
|
RDEPEND="
|
|
app-admin/eselect
|
|
!dev-lang/lua:0
|
|
"
|
|
|
|
src_install() {
|
|
insinto /usr/share/eselect/modules/
|
|
newins "${FILESDIR}"/lua.eselect-${PV} lua.eselect
|
|
}
|