summaryrefslogtreecommitdiff
path: root/dev-util/directx-headers/directx-headers-1.613.1.ebuild
blob: e59d2038d4d660f573f70b88ea5246d74a380c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

MY_PN=DirectX-Headers
inherit meson-multilib

if [[ ${PV} == *9999* ]]; then
	EGIT_REPO_URI="https://github.com/microsoft/${MY_PN}.git"
	inherit git-r3
else
	SRC_URI="https://github.com/microsoft/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
	KEYWORDS="~amd64 ~x86"
	S="${WORKDIR}"/${MY_PN}-${PV}
fi

DESCRIPTION="DirectX header files and WSL stubs"
HOMEPAGE="https://github.com/microsoft/DirectX-Headers"

LICENSE="MIT"
SLOT="0"

multilib_src_configure() {
	local emesonargs=(
		-Dbuild-test=false
	)

	meson_src_configure
}