blob: 8b6d29bf39959dd3f35baf4d639b1a3b15227815 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
class Recipe(recipe.Recipe):
version = '3.1.9'
name = 'directxmath'
licenses = [{License.MIT: ['LICENSE']}]
stype = SourceType.TARBALL
btype = BuildType.MESON
url = 'https://github.com/microsoft/DirectXMath/archive/refs/tags/feb2024.tar.gz'
tarball_checksum = 'f78bb400dcbedd987f2876b2fb6fe12199d795cd6a912f965ef3a2141c78303d'
tarball_name = 'feb2024.tar.gz'
tarball_dirname = 'DirectXMath-feb2024'
files_devel = []
patches = [
# https://wrapdb.mesonbuild.com/v2/directxmath_3.1.9-1/get_patch
'directxmath/0001-Add-DirectXMath-wrap.patch',
]
|