blob: 3ae4b9a92ae21cbbf72c274410f1d3d8eff8f974 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="Eselect module for management of multiple D versions"
HOMEPAGE="https://github.com/gentoo/dlang"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
RDEPEND="app-admin/eselect"
S="${FILESDIR}"
src_install() {
insinto /usr/share/eselect/modules
newins dlang.eselect-${PV} dlang.eselect
keepdir /usr/include/dlang
}
|