summaryrefslogtreecommitdiff
path: root/dev-util/directx-headers/directx-headers-1.616.0.ebuild
diff options
context:
space:
mode:
author1vybridge <openrc@posteo.de>2025-06-08 16:15:21 +0300
committerMatt Turner <mattst88@gentoo.org>2025-06-09 11:27:59 -0400
commitbf0e6e34b1af9cf7ed9933a7d6f446be4bf104a6 (patch)
tree664997e251c87b4d71920cbe8b0629f208f12837 /dev-util/directx-headers/directx-headers-1.616.0.ebuild
parent489ddd7823a8949e80d607f6401b0ca072af8579 (diff)
downloadgentoo-bf0e6e34b1af9cf7ed9933a7d6f446be4bf104a6.tar.gz
gentoo-bf0e6e34b1af9cf7ed9933a7d6f446be4bf104a6.tar.bz2
gentoo-bf0e6e34b1af9cf7ed9933a7d6f446be4bf104a6.zip
dev-util/directx-headers: add 1.616.0
Signed-off-by: 1vybridge <openrc@posteo.de> Part-of: https://github.com/gentoo/gentoo/pull/42500 Closes: https://github.com/gentoo/gentoo/pull/42500 Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-util/directx-headers/directx-headers-1.616.0.ebuild')
-rw-r--r--dev-util/directx-headers/directx-headers-1.616.0.ebuild30
1 files changed, 30 insertions, 0 deletions
diff --git a/dev-util/directx-headers/directx-headers-1.616.0.ebuild b/dev-util/directx-headers/directx-headers-1.616.0.ebuild
new file mode 100644
index 000000000000..e13acf9baff6
--- /dev/null
+++ b/dev-util/directx-headers/directx-headers-1.616.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2025 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 ~arm64 ~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
+}