diff options
author | Matt Turner <mattst88@gentoo.org> | 2024-09-02 13:29:59 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2024-09-02 13:52:19 -0400 |
commit | 43e5cd2e0c6736d8a69c1da41455b98bf52ece61 (patch) | |
tree | bc7e8eee04a96de66dbb9523f7646e4c607033eb /dev-util/directx-headers | |
parent | dev-libs/wayland-protocols: Version bump to 1.37 (diff) | |
download | gentoo-43e5cd2e0c6736d8a69c1da41455b98bf52ece61.tar.gz gentoo-43e5cd2e0c6736d8a69c1da41455b98bf52ece61.tar.bz2 gentoo-43e5cd2e0c6736d8a69c1da41455b98bf52ece61.zip |
dev-util/directx-headers: Version bump to 1.614.0
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'dev-util/directx-headers')
-rw-r--r-- | dev-util/directx-headers/Manifest | 1 | ||||
-rw-r--r-- | dev-util/directx-headers/directx-headers-1.614.0.ebuild | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/dev-util/directx-headers/Manifest b/dev-util/directx-headers/Manifest index 8a8197ebfb0e..e73624ddf7a2 100644 --- a/dev-util/directx-headers/Manifest +++ b/dev-util/directx-headers/Manifest @@ -1 +1,2 @@ DIST directx-headers-1.613.1.tar.gz 449088 BLAKE2B 64e19960029842bd9c3b03b00718b12ab44b2f2b04678e4190b2f03fb57c559b2ce54692dd04278c10aeb5b3c9078a31793ff530c4011691f859ed444c9a9ac5 SHA512 a450b989f1a066f81ef24d269b0415e2f0256bcecb14a4efa75416acb97c56e036faa0db3a0d2dac7fb87d47193adc1a4a34b22c6c0019dfbf89e015d727e374 +DIST directx-headers-1.614.0.tar.gz 458121 BLAKE2B b81c9f904c50178dc794dd57cc5d406340cdbd3f53a9f5f542bd396080adc6cf83d5ed175ba8f2ce70cce9e995e7daa84bed2bfa35181098718808b9d476b605 SHA512 5f78c8d47d02c1620b4ef4b379f0598e000c7aef367d694d37f796978019383911d0778434bff5a635f8d1c688595896337dbd31dacdca3e37af91b51be98b08 diff --git a/dev-util/directx-headers/directx-headers-1.614.0.ebuild b/dev-util/directx-headers/directx-headers-1.614.0.ebuild new file mode 100644 index 000000000000..a206503ba728 --- /dev/null +++ b/dev-util/directx-headers/directx-headers-1.614.0.ebuild @@ -0,0 +1,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 ~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 +} |