Date: Thursday, December 1, 2022 @ 21:18:30
Author: heftig
Revision: 1356108
archrelease: copy trunk to multilib-staging-x86_64
Added:
lib32-mesa/repos/multilib-staging-x86_64/0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch
(from rev 1356107,
lib32-mesa/trunk/0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch)
lib32-mesa/repos/multilib-staging-x86_64/0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch
(from rev 1356107,
lib32-mesa/trunk/0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch)
lib32-mesa/repos/multilib-staging-x86_64/LICENSE
(from rev 1356107, lib32-mesa/trunk/LICENSE)
lib32-mesa/repos/multilib-staging-x86_64/PKGBUILD
(from rev 1356107, lib32-mesa/trunk/PKGBUILD)
lib32-mesa/repos/multilib-staging-x86_64/keys/
Deleted:
lib32-mesa/repos/multilib-staging-x86_64/0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch
lib32-mesa/repos/multilib-staging-x86_64/0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch
lib32-mesa/repos/multilib-staging-x86_64/LICENSE
lib32-mesa/repos/multilib-staging-x86_64/PKGBUILD
lib32-mesa/repos/multilib-staging-x86_64/keys/
-----------------------------------------------------------------+
0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch | 80 -
0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch | 166 +--
LICENSE | 166 +--
PKGBUILD | 459
++++------
4 files changed, 435 insertions(+), 436 deletions(-)
Deleted: 0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch
===================================================================
--- 0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch
2022-12-01 21:18:12 UTC (rev 1356107)
+++ 0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch
2022-12-01 21:18:30 UTC (rev 1356108)
@@ -1,40 +0,0 @@
-From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
-From: Lionel Landwerlin <[email protected]>
-Date: Sun, 12 Jun 2022 23:59:05 +0300
-Subject: [PATCH] anv: force MEDIA_INTERFACE_DESCRIPTOR_LOAD reemit after
- 3D->GPGPU switch
-
-Seems to fix a hang in Age of Empire 4 where the HW is hung on a
-PIPE_CONTROL after a GPGPU_WALKER but no
-MEDIA_INTERFACE_DESCRIPTOR_LOAD was emitted since the switch from 3D
-to GPGPU.
-
-This would happen in the following case :
-
- vkCmdBindPipeline(COMPUTE, cs_pipeline);
- vkCmdDispatch(...);
- vkCmdBindPipeline(GRAPHICS, gfx_pipeline);
- vkCmdDraw(...);
- vkCmdDispatch(...);
-
-Signed-off-by: Lionel Landwerlin <[email protected]>
----
- src/intel/vulkan/genX_cmd_buffer.c | 5 +++++
- 1 file changed, 5 insertions(+)
-
-diff --git a/src/intel/vulkan/genX_cmd_buffer.c
b/src/intel/vulkan/genX_cmd_buffer.c
-index 240630d84124..77822ec89404 100644
---- a/src/intel/vulkan/genX_cmd_buffer.c
-+++ b/src/intel/vulkan/genX_cmd_buffer.c
-@@ -5917,6 +5917,11 @@ genX(flush_pipeline_select)(struct anv_cmd_buffer
*cmd_buffer,
- }
- #endif
-
-+#if GFX_VERx10 == 120
-+ if (pipeline == _3D)
-+ cmd_buffer->state.compute.pipeline_dirty = true;
-+#endif
-+
- /* From "BXML » GT » MI » vol1a GPU Overview » [Instruction]
- * PIPELINE_SELECT [DevBWR+]":
- *
Copied:
lib32-mesa/repos/multilib-staging-x86_64/0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch
(from rev 1356107,
lib32-mesa/trunk/0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch)
===================================================================
--- 0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch
(rev 0)
+++ 0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch
2022-12-01 21:18:30 UTC (rev 1356108)
@@ -0,0 +1,40 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Lionel Landwerlin <[email protected]>
+Date: Sun, 12 Jun 2022 23:59:05 +0300
+Subject: [PATCH] anv: force MEDIA_INTERFACE_DESCRIPTOR_LOAD reemit after
+ 3D->GPGPU switch
+
+Seems to fix a hang in Age of Empire 4 where the HW is hung on a
+PIPE_CONTROL after a GPGPU_WALKER but no
+MEDIA_INTERFACE_DESCRIPTOR_LOAD was emitted since the switch from 3D
+to GPGPU.
+
+This would happen in the following case :
+
+ vkCmdBindPipeline(COMPUTE, cs_pipeline);
+ vkCmdDispatch(...);
+ vkCmdBindPipeline(GRAPHICS, gfx_pipeline);
+ vkCmdDraw(...);
+ vkCmdDispatch(...);
+
+Signed-off-by: Lionel Landwerlin <[email protected]>
+---
+ src/intel/vulkan/genX_cmd_buffer.c | 5 +++++
+ 1 file changed, 5 insertions(+)
+
+diff --git a/src/intel/vulkan/genX_cmd_buffer.c
b/src/intel/vulkan/genX_cmd_buffer.c
+index 1aa997f2ade2..2e9979c8f63e 100644
+--- a/src/intel/vulkan/genX_cmd_buffer.c
++++ b/src/intel/vulkan/genX_cmd_buffer.c
+@@ -5955,6 +5955,11 @@ genX(flush_pipeline_select)(struct anv_cmd_buffer
*cmd_buffer,
+ }
+ #endif
+
++#if GFX_VERx10 == 120
++ if (pipeline == _3D)
++ cmd_buffer->state.compute.pipeline_dirty = true;
++#endif
++
+ /* From "BXML » GT » MI » vol1a GPU Overview » [Instruction]
+ * PIPELINE_SELECT [DevBWR+]":
+ *
Deleted: 0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch
===================================================================
--- 0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch
2022-12-01 21:18:12 UTC (rev 1356107)
+++ 0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch
2022-12-01 21:18:30 UTC (rev 1356108)
@@ -1,83 +0,0 @@
-From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
-From: Lionel Landwerlin <[email protected]>
-Date: Sat, 25 Jun 2022 23:38:45 +0300
-Subject: [PATCH] intel/fs: always mask the bottom bits of the sampler extended
- descriptor
-
-Fixes a hang in Age Of Empire 4. The HW is hang with the sampler input
-unit busy. Replaying on simulation showed the extended message length
-in the extended descriptor is invalid. Since the Anv ensures the input
-is correct in anv_surface_state_to_handle(), the likely reason for
-this issue is the use of VK_VALVE_mutable_descriptor_type and the
-application leaving a previous value for a different descriptor type.
-
-Signed-off-by: Lionel Landwerlin <[email protected]>
----
- src/intel/compiler/brw_fs.cpp | 2 +-
- .../compiler/brw_lower_logical_sends.cpp | 20 +++++++++++++++----
- 2 files changed, 17 insertions(+), 5 deletions(-)
-
-diff --git a/src/intel/compiler/brw_fs.cpp b/src/intel/compiler/brw_fs.cpp
-index 0f282dcd345f..165d8b33b677 100644
---- a/src/intel/compiler/brw_fs.cpp
-+++ b/src/intel/compiler/brw_fs.cpp
-@@ -4421,7 +4421,7 @@ brw_fb_write_msg_control(const fs_inst *inst,
- return mctl;
- }
-
-- /**
-+/**
- * Predicate the specified instruction on the sample mask.
- */
- void
-diff --git a/src/intel/compiler/brw_lower_logical_sends.cpp
b/src/intel/compiler/brw_lower_logical_sends.cpp
-index 255ce7594811..e99c7b8ab844 100644
---- a/src/intel/compiler/brw_lower_logical_sends.cpp
-+++ b/src/intel/compiler/brw_lower_logical_sends.cpp
-@@ -1112,30 +1112,42 @@ lower_sampler_logical_send_gfx7(const fs_builder &bld,
fs_inst *inst, opcode op,
- inst->src[1] = brw_imm_ud(0);
- } else if (surface_handle.file != BAD_FILE) {
- /* Bindless surface */
-+ const fs_builder ubld = bld.group(1, 0).exec_all();
- assert(devinfo->ver >= 9);
- inst->desc = brw_sampler_desc(devinfo,
- GFX9_BTI_BINDLESS,
- sampler.file == IMM ? sampler.ud % 16 : 0,
- msg_type,
- simd_mode,
- 0 /* return_format unused on gfx7+ */);
-
- /* For bindless samplers, the entire address is included in the message
- * header so we can leave the portion in the message descriptor 0.
- */
- if (sampler_handle.file != BAD_FILE || sampler.file == IMM) {
- inst->src[0] = brw_imm_ud(0);
- } else {
-- const fs_builder ubld = bld.group(1, 0).exec_all();
- fs_reg desc = ubld.vgrf(BRW_REGISTER_TYPE_UD);
- ubld.SHL(desc, sampler, brw_imm_ud(8));
- inst->src[0] = desc;
- }
-
-- /* We assume that the driver provided the handle in the top 20 bits so
-- * we can use the surface handle directly as the extended descriptor.
-+ /* We previously assumed that the driver provided the handle in the top
-+ * 20 bits (leaving the bottom 12 bits at 0). But with extensions like
-+ * VK_VALVE_mutable_descriptor_type, the application is more in control
-+ * of the content of VkDescriptors which is where we store
-+ * surface/sampler offsets. We experience GPU hangs because the
-+ * application left an invalid value in the descriptor (probably used
-+ * for another descriptor type than sampler) and the lower 12bits of the
-+ * surface handle overlapping with the extended descriptor length make
-+ * the HW hang. The following AND() clears those bits and fixes a hang
-+ * in Age Of Empire 4.
- */
-- inst->src[1] = retype(surface_handle, BRW_REGISTER_TYPE_UD);
-+ fs_reg ex_desc = ubld.vgrf(BRW_REGISTER_TYPE_UD);
-+ ubld.AND(ex_desc,
-+ retype(surface_handle, BRW_REGISTER_TYPE_UD),
-+ brw_imm_ud(INTEL_MASK(31, 12)));
-+ inst->src[1] = component(ex_desc, 0);
- } else {
- /* Immediate portion of the descriptor */
- inst->desc = brw_sampler_desc(devinfo,
Copied:
lib32-mesa/repos/multilib-staging-x86_64/0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch
(from rev 1356107,
lib32-mesa/trunk/0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch)
===================================================================
--- 0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch
(rev 0)
+++ 0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch
2022-12-01 21:18:30 UTC (rev 1356108)
@@ -0,0 +1,83 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Lionel Landwerlin <[email protected]>
+Date: Sat, 25 Jun 2022 23:38:45 +0300
+Subject: [PATCH] intel/fs: always mask the bottom bits of the sampler extended
+ descriptor
+
+Fixes a hang in Age Of Empire 4. The HW is hang with the sampler input
+unit busy. Replaying on simulation showed the extended message length
+in the extended descriptor is invalid. Since the Anv ensures the input
+is correct in anv_surface_state_to_handle(), the likely reason for
+this issue is the use of VK_VALVE_mutable_descriptor_type and the
+application leaving a previous value for a different descriptor type.
+
+Signed-off-by: Lionel Landwerlin <[email protected]>
+---
+ src/intel/compiler/brw_fs.cpp | 2 +-
+ .../compiler/brw_lower_logical_sends.cpp | 20 +++++++++++++++----
+ 2 files changed, 17 insertions(+), 5 deletions(-)
+
+diff --git a/src/intel/compiler/brw_fs.cpp b/src/intel/compiler/brw_fs.cpp
+index 624454676031..061eb7d603bb 100644
+--- a/src/intel/compiler/brw_fs.cpp
++++ b/src/intel/compiler/brw_fs.cpp
+@@ -4439,7 +4439,7 @@ brw_fb_write_msg_control(const fs_inst *inst,
+ return mctl;
+ }
+
+- /**
++/**
+ * Predicate the specified instruction on the sample mask.
+ */
+ void
+diff --git a/src/intel/compiler/brw_lower_logical_sends.cpp
b/src/intel/compiler/brw_lower_logical_sends.cpp
+index 1ff064d342ae..90cb00daeb9b 100644
+--- a/src/intel/compiler/brw_lower_logical_sends.cpp
++++ b/src/intel/compiler/brw_lower_logical_sends.cpp
+@@ -1117,30 +1117,42 @@ lower_sampler_logical_send_gfx7(const fs_builder &bld,
fs_inst *inst, opcode op,
+ inst->src[1] = brw_imm_ud(0);
+ } else if (surface_handle.file != BAD_FILE) {
+ /* Bindless surface */
++ const fs_builder ubld = bld.group(1, 0).exec_all();
+ assert(devinfo->ver >= 9);
+ inst->desc = brw_sampler_desc(devinfo,
+ GFX9_BTI_BINDLESS,
+ sampler.file == IMM ? sampler.ud % 16 : 0,
+ msg_type,
+ simd_mode,
+ 0 /* return_format unused on gfx7+ */);
+
+ /* For bindless samplers, the entire address is included in the message
+ * header so we can leave the portion in the message descriptor 0.
+ */
+ if (sampler_handle.file != BAD_FILE || sampler.file == IMM) {
+ inst->src[0] = brw_imm_ud(0);
+ } else {
+- const fs_builder ubld = bld.group(1, 0).exec_all();
+ fs_reg desc = ubld.vgrf(BRW_REGISTER_TYPE_UD);
+ ubld.SHL(desc, sampler, brw_imm_ud(8));
+ inst->src[0] = desc;
+ }
+
+- /* We assume that the driver provided the handle in the top 20 bits so
+- * we can use the surface handle directly as the extended descriptor.
++ /* We previously assumed that the driver provided the handle in the top
++ * 20 bits (leaving the bottom 12 bits at 0). But with extensions like
++ * VK_VALVE_mutable_descriptor_type, the application is more in control
++ * of the content of VkDescriptors which is where we store
++ * surface/sampler offsets. We experience GPU hangs because the
++ * application left an invalid value in the descriptor (probably used
++ * for another descriptor type than sampler) and the lower 12bits of the
++ * surface handle overlapping with the extended descriptor length make
++ * the HW hang. The following AND() clears those bits and fixes a hang
++ * in Age Of Empire 4.
+ */
+- inst->src[1] = retype(surface_handle, BRW_REGISTER_TYPE_UD);
++ fs_reg ex_desc = ubld.vgrf(BRW_REGISTER_TYPE_UD);
++ ubld.AND(ex_desc,
++ retype(surface_handle, BRW_REGISTER_TYPE_UD),
++ brw_imm_ud(INTEL_MASK(31, 12)));
++ inst->src[1] = component(ex_desc, 0);
+ } else {
+ /* Immediate portion of the descriptor */
+ inst->desc = brw_sampler_desc(devinfo,
Deleted: LICENSE
===================================================================
--- LICENSE 2022-12-01 21:18:12 UTC (rev 1356107)
+++ LICENSE 2022-12-01 21:18:30 UTC (rev 1356108)
@@ -1,83 +0,0 @@
-The Mesa 3D Graphics Library
-
-Disclaimer
-
- Mesa is a 3-D graphics library with an API which is very similar to
- that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
- syntax or state machine, it is being used with authorization from
- [2]Silicon Graphics, Inc.(SGI). However, the author does not possess an
- OpenGL license from SGI, and makes no claim that Mesa is in any way a
- compatible replacement for OpenGL or associated with SGI. Those who
- want a licensed implementation of OpenGL should contact a licensed
- vendor.
-
- Please do not refer to the library as MesaGL (for legal reasons). It's
- just Mesa or The Mesa 3-D graphics library.
-
- * OpenGL is a trademark of [3]Silicon Graphics Incorporated.
-
-License / Copyright Information
-
- The Mesa distribution consists of several components. Different
- copyrights and licenses apply to different components. For example, the
- GLX client code uses the SGI Free Software License B, and some of the
- Mesa device drivers are copyrighted by their authors. See below for a
- list of Mesa's main components and the license for each.
-
- The core Mesa library is licensed according to the terms of the MIT
- license. This allows integration with the XFree86, Xorg and DRI
- projects.
-
- The default Mesa license is as follows:
-
-Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the "Software"),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
-OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-Attention, Contributors
-
- When contributing to the Mesa project you must agree to the licensing
- terms of the component to which you're contributing. The following
- section lists the primary components of the Mesa distribution and their
- respective licenses.
-
-Mesa Component Licenses
-
-Component Location License
-------------------------------------------------------------------
-Main Mesa code src/mesa/ MIT
-
-Device drivers src/mesa/drivers/* MIT, generally
-
-Gallium code src/gallium/ MIT
-
-Ext headers include/GL/glext.h Khronos
- include/GL/glxext.h
-
-GLX client code src/glx/ SGI Free Software License B
-
-C11 thread include/c11/threads*.h Boost (permissive) emulation
-
- In general, consult the source files for license terms.
-
-References
-
- 1. https://www.opengl.org/
- 2. https://www.sgi.com/
- 3. https://www.sgi.com/
Copied: lib32-mesa/repos/multilib-staging-x86_64/LICENSE (from rev 1356107,
lib32-mesa/trunk/LICENSE)
===================================================================
--- LICENSE (rev 0)
+++ LICENSE 2022-12-01 21:18:30 UTC (rev 1356108)
@@ -0,0 +1,83 @@
+The Mesa 3D Graphics Library
+
+Disclaimer
+
+ Mesa is a 3-D graphics library with an API which is very similar to
+ that of [1]OpenGL.* To the extent that Mesa utilizes the OpenGL command
+ syntax or state machine, it is being used with authorization from
+ [2]Silicon Graphics, Inc.(SGI). However, the author does not possess an
+ OpenGL license from SGI, and makes no claim that Mesa is in any way a
+ compatible replacement for OpenGL or associated with SGI. Those who
+ want a licensed implementation of OpenGL should contact a licensed
+ vendor.
+
+ Please do not refer to the library as MesaGL (for legal reasons). It's
+ just Mesa or The Mesa 3-D graphics library.
+
+ * OpenGL is a trademark of [3]Silicon Graphics Incorporated.
+
+License / Copyright Information
+
+ The Mesa distribution consists of several components. Different
+ copyrights and licenses apply to different components. For example, the
+ GLX client code uses the SGI Free Software License B, and some of the
+ Mesa device drivers are copyrighted by their authors. See below for a
+ list of Mesa's main components and the license for each.
+
+ The core Mesa library is licensed according to the terms of the MIT
+ license. This allows integration with the XFree86, Xorg and DRI
+ projects.
+
+ The default Mesa license is as follows:
+
+Copyright (C) 1999-2007 Brian Paul All Rights Reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the "Software"),
+to deal in the Software without restriction, including without limitation
+the rights to use, copy, modify, merge, publish, distribute, sublicense,
+and/or sell copies of the Software, and to permit persons to whom the
+Software is furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
+Attention, Contributors
+
+ When contributing to the Mesa project you must agree to the licensing
+ terms of the component to which you're contributing. The following
+ section lists the primary components of the Mesa distribution and their
+ respective licenses.
+
+Mesa Component Licenses
+
+Component Location License
+------------------------------------------------------------------
+Main Mesa code src/mesa/ MIT
+
+Device drivers src/mesa/drivers/* MIT, generally
+
+Gallium code src/gallium/ MIT
+
+Ext headers include/GL/glext.h Khronos
+ include/GL/glxext.h
+
+GLX client code src/glx/ SGI Free Software License B
+
+C11 thread include/c11/threads*.h Boost (permissive) emulation
+
+ In general, consult the source files for license terms.
+
+References
+
+ 1. https://www.opengl.org/
+ 2. https://www.sgi.com/
+ 3. https://www.sgi.com/
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-12-01 21:18:12 UTC (rev 1356107)
+++ PKGBUILD 2022-12-01 21:18:30 UTC (rev 1356108)
@@ -1,230 +0,0 @@
-# Maintainer: Laurent Carlier <[email protected]>
-# Maintainer: Felix Yan <[email protected]>
-# Contributor: Jan de Groot <[email protected]>
-# Contributor: Andreas Radke <[email protected]>
-
-pkgbase=lib32-mesa
-pkgname=('lib32-vulkan-mesa-layers' 'lib32-opencl-mesa' 'lib32-vulkan-intel'
'lib32-vulkan-radeon' 'lib32-libva-mesa-driver' 'lib32-mesa-vdpau' 'lib32-mesa')
-pkgdesc="An open-source implementation of the OpenGL specification (32-bit)"
-pkgver=22.2.4
-pkgrel=1
-arch=('x86_64')
-makedepends=('python-mako' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11'
'xorgproto' 'lib32-libdrm'
- 'lib32-libxshmfence' 'lib32-libxxf86vm' 'lib32-libxdamage'
'lib32-libvdpau'
- 'lib32-libva' 'lib32-wayland' 'wayland-protocols' 'lib32-zstd'
'lib32-libelf'
- 'lib32-llvm' 'libclc' 'clang' 'lib32-clang' 'lib32-libglvnd'
'lib32-libunwind'
- 'lib32-lm_sensors' 'lib32-libxrandr' 'lib32-vulkan-icd-loader'
'lib32-systemd'
- 'glslang' 'cmake' 'meson')
-url="https://www.mesa3d.org/"
-license=('custom')
-options=('debug' '!lto')
-source=(https://mesa.freedesktop.org/archive/mesa-${pkgver}.tar.xz{,.sig}
- 0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch
- 0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch
- LICENSE)
-sha512sums=('fa4aa916e57137c758052ee5190d291e6d637f9ec809de54b64bddf5d2fdeafeb3389cd60d44203502e3d93b2563c84182b77a0d4d180bc438fc8064864426c6'
- 'SKIP'
-
'9bf47019a7c1da6724393cf571c6e1ce6b56ca24fe32045bc056d2e1bb2584f6a81e886dd8b2f1b1aabb953367dd068f9833f520fa41a9b2bbce20fdc15d07b4'
-
'3df104f4abbecb12fcf9631cabdc7fe883b6c529abebaf36a0d47933ebd0c57235f11767060604dec71acefdf55f2f025eb997b1dd1cf0b92c02af0a604cae98'
-
'f9f0d0ccf166fe6cb684478b6f1e1ab1f2850431c06aa041738563eb1808a004e52cdec823c103c9e180f03ffc083e95974d291353f0220fe52ae6d4897fecc7')
-validpgpkeys=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D' # Emil Velikov
<[email protected]>
- '946D09B5E4C9845E63075FF1D961C596A7203456' # Andres Gomez
<[email protected]>
- 'E3E8F480C52ADD73B278EE78E1ECBE07D7D70895' # Juan Antonio
Suárez Romero (Igalia, S.L.) <[email protected]>
- 'A5CC9FEC93F2F837CB044912336909B6B25FADFA' # Juan A. Suarez
Romero <[email protected]>
- '71C4B75620BC75708B4BDB254C95FAAB3EB073EC' # Dylan Baker
<[email protected]>
- '57551DE15B968F6341C248F68D8E31AFC32428A6') # Eric Engestrom
<[email protected]>
-
-prepare() {
- cd mesa-$pkgver
-
- # https://gitlab.freedesktop.org/mesa/mesa/-/issues/7111
- # https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17247
- # https://github.com/HansKristian-Work/vkd3d-proton/issues/1200
- patch -Np1 -i
../0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch
- patch -Np1 -i
../0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch
-}
-
-build() {
- # Build only minimal debug info to reduce size
- CFLAGS+=' -g1'
- CXXFLAGS+=' -g1'
-
- export CC="gcc -m32"
- export CXX="g++ -m32"
- export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
- cat >crossfile.ini <<END
-[binaries]
-llvm-config = '/usr/bin/llvm-config32'
-END
-
- # swr driver is broken with some cpu see FS#66972
-
- arch-meson mesa-$pkgver build \
- --native-file crossfile.ini \
- --libdir=/usr/lib32 \
- -D b_ndebug=true \
- -D b_lto=false \
- -D platforms=x11,wayland \
- -D
gallium-drivers=r300,r600,radeonsi,nouveau,virgl,svga,swrast,iris,crocus,zink \
- -D vulkan-drivers=amd,intel \
- -D vulkan-layers=device-select,intel-nullhw,overlay \
- -D dri3=enabled \
- -D egl=enabled \
- -D gallium-extra-hud=true \
- -D gallium-nine=true \
- -D gallium-omx=disabled \
- -D gallium-opencl=icd \
- -D gallium-va=enabled \
- -D gallium-vdpau=enabled \
- -D gallium-xa=enabled \
- -D gallium-xvmc=disabled \
- -D gbm=enabled \
- -D gles1=disabled \
- -D gles2=enabled \
- -D glvnd=true \
- -D glx=dri \
- -D libunwind=enabled \
- -D llvm=enabled \
- -D lmsensors=enabled \
- -D osmesa=true \
- -D shared-glapi=enabled \
- -D microsoft-clc=disabled \
- -D video-codecs=vc1dec,h264dec,h264enc,h265dec,h265enc \
- -D valgrind=disabled
-
- # Print config
- meson configure build
-
- ninja -C build
- meson compile -C build
-
- # fake installation to be seperated into packages
- # outside of fakeroot but mesa doesn't need to chown/mod
- DESTDIR="${srcdir}/fakeinstall" meson install -C build
-}
-
-_install() {
- local src f dir
- for src; do
- f="${src#fakeinstall/}"
- dir="${pkgdir}/${f%/*}"
- install -m755 -d "${dir}"
- mv -v "${src}" "${dir}/"
- done
-}
-
-package_lib32-vulkan-mesa-layers() {
- pkgdesc="Mesa's Vulkan layers (32-bit)"
- depends=('lib32-libdrm' 'lib32-libxcb' 'lib32-wayland' 'vulkan-mesa-layers')
- conflicts=('lib32-vulkan-mesa-layer')
- replaces=('lib32-vulkan-mesa-layer')
-
- rm -rv fakeinstall/usr/share/vulkan/explicit_layer.d
- rm -rv fakeinstall/usr/share/vulkan/implicit_layer.d
- rm -rv fakeinstall/usr/bin/mesa-overlay-control.py
-
- _install fakeinstall/usr/lib32/libVkLayer_*.so
-
- install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
-}
-
-package_lib32-opencl-mesa() {
- pkgdesc="OpenCL support for AMD/ATI Radeon mesa drivers (32-bit)"
- depends=('lib32-expat' 'lib32-libdrm' 'lib32-libelf' 'lib32-clang'
'lib32-zstd' 'opencl-mesa')
- optdepends=('opencl-headers: headers necessary for OpenCL development')
- provides=('lib32-opencl-driver')
-
- rm -rv fakeinstall/etc/OpenCL
- _install fakeinstall/usr/lib32/lib*OpenCL*
- _install fakeinstall/usr/lib32/gallium-pipe
-
- install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
-}
-
-package_lib32-vulkan-intel() {
- pkgdesc="Intel's Vulkan mesa driver (32-bit)"
- depends=('lib32-wayland' 'lib32-libx11' 'lib32-libxshmfence' 'lib32-libdrm'
'lib32-zstd'
- 'lib32-systemd')
- optdepends=('lib32-vulkan-mesa-layers: additional vulkan layers')
- provides=('lib32-vulkan-driver')
-
- _install fakeinstall/usr/share/vulkan/icd.d/intel_icd*.json
- _install fakeinstall/usr/lib32/libvulkan_intel.so
-
- install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
-}
-
-package_lib32-vulkan-radeon() {
- pkgdesc="Radeon's Vulkan mesa driver (32-bit)"
- depends=('lib32-wayland' 'lib32-libx11' 'lib32-libxshmfence' 'lib32-libelf'
'lib32-libdrm'
- 'lib32-zstd' 'lib32-llvm-libs' 'lib32-systemd')
- optdepends=('lib32-vulkan-mesa-layers: additional vulkan layers')
- provides=('lib32-vulkan-driver')
-
- _install fakeinstall/usr/share/vulkan/icd.d/radeon_icd*.json
- _install fakeinstall/usr/lib32/libvulkan_radeon.so
-
- install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
-}
-
-package_lib32-libva-mesa-driver() {
- pkgdesc="VA-API implementation for gallium (32-bit)"
- depends=('lib32-libdrm' 'lib32-libx11' 'lib32-llvm-libs' 'lib32-expat'
'lib32-libelf'
- 'lib32-libxshmfence' 'lib32-zstd')
-
- _install fakeinstall/usr/lib32/dri/*_drv_video.so
-
- install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
-}
-
-package_lib32-mesa-vdpau() {
- pkgdesc="Mesa VDPAU drivers (32-bit)"
- depends=('lib32-libdrm' 'lib32-libx11' 'lib32-llvm-libs' 'lib32-expat'
'lib32-libelf'
- 'lib32-libxshmfence' 'lib32-zstd')
-
- _install fakeinstall/usr/lib32/vdpau
-
- install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
-}
-
-package_lib32-mesa() {
- depends=('lib32-libdrm' 'lib32-wayland' 'lib32-libxxf86vm'
'lib32-libxdamage' 'lib32-libxshmfence'
- 'lib32-libelf' 'lib32-libunwind' 'lib32-llvm-libs'
'lib32-lm_sensors' 'lib32-libglvnd'
- 'lib32-zstd' 'lib32-vulkan-icd-loader' 'mesa')
- depends+=('libsensors.so')
- optdepends=('opengl-man-pages: for the OpenGL API man pages'
- 'lib32-mesa-vdpau: for accelerated video playback'
- 'lib32-libva-mesa-driver: for accelerated video playback')
- provides=('lib32-mesa-libgl' 'lib32-opengl-driver')
- conflicts=('lib32-mesa-libgl')
- replaces=('lib32-mesa-libgl')
-
- rm -rv fakeinstall/usr/share/drirc.d/00-mesa-defaults.conf
- rm -rv fakeinstall/usr/share/drirc.d/00-radv-defaults.conf
- rm -rv fakeinstall/usr/share/glvnd/egl_vendor.d/50_mesa.json
-
- # ati-dri, nouveau-dri, intel-dri, svga-dri, swrast, swr
- _install fakeinstall/usr/lib32/dri/*_dri.so
-
- #_install fakeinstall/usr/lib32/bellagio
- _install fakeinstall/usr/lib32/d3d
- _install fakeinstall/usr/lib32/lib{gbm,glapi}.so*
- _install fakeinstall/usr/lib32/libOSMesa.so*
- _install fakeinstall/usr/lib32/libxatracker.so*
- #_install fakeinstall/usr/lib32/libswrAVX*.so*
-
- rm -rv fakeinstall/usr/include
- _install fakeinstall/usr/lib32/pkgconfig
-
- # libglvnd support
- _install fakeinstall/usr/lib32/libGLX_mesa.so*
- _install fakeinstall/usr/lib32/libEGL_mesa.so*
-
- # indirect rendering
- ln -s /usr/lib32/libGLX_mesa.so.0 "${pkgdir}/usr/lib32/libGLX_indirect.so.0"
-
- # make sure there are no files left to install
- find fakeinstall -depth -print0 | xargs -0 rmdir
-
- install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
-}
Copied: lib32-mesa/repos/multilib-staging-x86_64/PKGBUILD (from rev 1356107,
lib32-mesa/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-12-01 21:18:30 UTC (rev 1356108)
@@ -0,0 +1,229 @@
+# Maintainer: Laurent Carlier <[email protected]>
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Jan de Groot <[email protected]>
+# Contributor: Andreas Radke <[email protected]>
+
+pkgbase=lib32-mesa
+pkgname=('lib32-vulkan-mesa-layers' 'lib32-opencl-mesa' 'lib32-vulkan-intel'
'lib32-vulkan-radeon' 'lib32-libva-mesa-driver' 'lib32-mesa-vdpau' 'lib32-mesa')
+pkgdesc="An open-source implementation of the OpenGL specification (32-bit)"
+pkgver=22.3.0
+pkgrel=2
+arch=('x86_64')
+makedepends=('python-mako' 'lib32-libxml2' 'lib32-expat' 'lib32-libx11'
'xorgproto' 'lib32-libdrm'
+ 'lib32-libxshmfence' 'lib32-libxxf86vm' 'lib32-libxdamage'
'lib32-libvdpau'
+ 'lib32-libva' 'lib32-wayland' 'wayland-protocols' 'lib32-zstd'
'lib32-libelf'
+ 'lib32-llvm' 'libclc' 'clang' 'lib32-clang' 'lib32-libglvnd'
'lib32-libunwind'
+ 'lib32-lm_sensors' 'lib32-libxrandr' 'lib32-vulkan-icd-loader'
'lib32-systemd'
+ 'glslang' 'cmake' 'meson')
+url="https://www.mesa3d.org/"
+license=('custom')
+options=('debug' '!lto')
+source=(https://mesa.freedesktop.org/archive/mesa-${pkgver}.tar.xz{,.sig}
+ 0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch
+ 0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch
+ LICENSE)
+sha512sums=('bf4d344459f97d266a5943b33aecf062b0825e13c1617afdab71c4ba6a87a201440761c9a32a6e0060910a0917122e3f4d29f666d6b94a38a71c94b9ff3ab9da'
+ 'SKIP'
+
'4ff7c359f08aedb1fb6eb2c6bb34bafa399edfa7916cd6cce7844bb38795e84c0265324e3fc7d37237d4824f029cb04da176bcf476785fd2e35a8b0ce4f8a394'
+
'5dd0cb8affa9cfe6e7d94f59b8e23727036fd8ab76938321f8d266315f30611584da6f6277fe2aa920130483302adab5e57e2bc08f1bd3c62ea57b3e4b007305'
+
'f9f0d0ccf166fe6cb684478b6f1e1ab1f2850431c06aa041738563eb1808a004e52cdec823c103c9e180f03ffc083e95974d291353f0220fe52ae6d4897fecc7')
+validpgpkeys=('8703B6700E7EE06D7A39B8D6EDAE37B02CEB490D' # Emil Velikov
<[email protected]>
+ '946D09B5E4C9845E63075FF1D961C596A7203456' # Andres Gomez
<[email protected]>
+ 'E3E8F480C52ADD73B278EE78E1ECBE07D7D70895' # Juan Antonio
Suárez Romero (Igalia, S.L.) <[email protected]>
+ 'A5CC9FEC93F2F837CB044912336909B6B25FADFA' # Juan A. Suarez
Romero <[email protected]>
+ '71C4B75620BC75708B4BDB254C95FAAB3EB073EC' # Dylan Baker
<[email protected]>
+ '57551DE15B968F6341C248F68D8E31AFC32428A6') # Eric Engestrom
<[email protected]>
+
+prepare() {
+ cd mesa-$pkgver
+
+ # https://gitlab.freedesktop.org/mesa/mesa/-/issues/7111
+ # https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17247
+ # https://github.com/HansKristian-Work/vkd3d-proton/issues/1200
+ patch -Np1 -i
../0001-anv-force-MEDIA_INTERFACE_DESCRIPTOR_LOAD-reemit-aft.patch
+ patch -Np1 -i
../0002-intel-fs-always-mask-the-bottom-bits-of-the-sampler-.patch
+}
+
+build() {
+ # Build only minimal debug info to reduce size
+ CFLAGS+=' -g1'
+ CXXFLAGS+=' -g1'
+
+ export CC="gcc -m32"
+ export CXX="g++ -m32"
+ export PKG_CONFIG="i686-pc-linux-gnu-pkg-config"
+ cat >crossfile.ini <<END
+[binaries]
+llvm-config = '/usr/bin/llvm-config32'
+END
+
+ # swr driver is broken with some cpu see FS#66972
+
+ arch-meson mesa-$pkgver build \
+ --native-file crossfile.ini \
+ --libdir=/usr/lib32 \
+ -D b_ndebug=true \
+ -D b_lto=false \
+ -D platforms=x11,wayland \
+ -D
gallium-drivers=r300,r600,radeonsi,nouveau,virgl,svga,swrast,iris,crocus,zink \
+ -D vulkan-drivers=amd,intel \
+ -D vulkan-layers=device-select,intel-nullhw,overlay \
+ -D dri3=enabled \
+ -D egl=enabled \
+ -D gallium-extra-hud=true \
+ -D gallium-nine=true \
+ -D gallium-omx=disabled \
+ -D gallium-opencl=icd \
+ -D gallium-va=enabled \
+ -D gallium-vdpau=enabled \
+ -D gallium-xa=enabled \
+ -D gbm=enabled \
+ -D gles1=disabled \
+ -D gles2=enabled \
+ -D glvnd=true \
+ -D glx=dri \
+ -D libunwind=enabled \
+ -D llvm=enabled \
+ -D lmsensors=enabled \
+ -D osmesa=true \
+ -D shared-glapi=enabled \
+ -D microsoft-clc=disabled \
+ -D video-codecs=vc1dec,h264dec,h264enc,h265dec,h265enc \
+ -D valgrind=disabled
+
+ # Print config
+ meson configure build
+
+ ninja -C build
+ meson compile -C build
+
+ # fake installation to be seperated into packages
+ # outside of fakeroot but mesa doesn't need to chown/mod
+ DESTDIR="${srcdir}/fakeinstall" meson install -C build
+}
+
+_install() {
+ local src f dir
+ for src; do
+ f="${src#fakeinstall/}"
+ dir="${pkgdir}/${f%/*}"
+ install -m755 -d "${dir}"
+ mv -v "${src}" "${dir}/"
+ done
+}
+
+package_lib32-vulkan-mesa-layers() {
+ pkgdesc="Mesa's Vulkan layers (32-bit)"
+ depends=('lib32-libdrm' 'lib32-libxcb' 'lib32-wayland' 'vulkan-mesa-layers')
+ conflicts=('lib32-vulkan-mesa-layer')
+ replaces=('lib32-vulkan-mesa-layer')
+
+ rm -rv fakeinstall/usr/share/vulkan/explicit_layer.d
+ rm -rv fakeinstall/usr/share/vulkan/implicit_layer.d
+ rm -rv fakeinstall/usr/bin/mesa-overlay-control.py
+
+ _install fakeinstall/usr/lib32/libVkLayer_*.so
+
+ install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
+}
+
+package_lib32-opencl-mesa() {
+ pkgdesc="OpenCL support for AMD/ATI Radeon mesa drivers (32-bit)"
+ depends=('lib32-expat' 'lib32-libdrm' 'lib32-libelf' 'lib32-clang'
'lib32-zstd' 'opencl-mesa')
+ optdepends=('opencl-headers: headers necessary for OpenCL development')
+ provides=('lib32-opencl-driver')
+
+ rm -rv fakeinstall/etc/OpenCL
+ _install fakeinstall/usr/lib32/lib*OpenCL*
+ _install fakeinstall/usr/lib32/gallium-pipe
+
+ install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
+}
+
+package_lib32-vulkan-intel() {
+ pkgdesc="Intel's Vulkan mesa driver (32-bit)"
+ depends=('lib32-wayland' 'lib32-libx11' 'lib32-libxshmfence' 'lib32-libdrm'
'lib32-zstd'
+ 'lib32-systemd')
+ optdepends=('lib32-vulkan-mesa-layers: additional vulkan layers')
+ provides=('lib32-vulkan-driver')
+
+ _install fakeinstall/usr/share/vulkan/icd.d/intel_icd*.json
+ _install fakeinstall/usr/lib32/libvulkan_intel.so
+
+ install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
+}
+
+package_lib32-vulkan-radeon() {
+ pkgdesc="Radeon's Vulkan mesa driver (32-bit)"
+ depends=('lib32-wayland' 'lib32-libx11' 'lib32-libxshmfence' 'lib32-libelf'
'lib32-libdrm'
+ 'lib32-zstd' 'lib32-llvm-libs' 'lib32-systemd')
+ optdepends=('lib32-vulkan-mesa-layers: additional vulkan layers')
+ provides=('lib32-vulkan-driver')
+
+ _install fakeinstall/usr/share/vulkan/icd.d/radeon_icd*.json
+ _install fakeinstall/usr/lib32/libvulkan_radeon.so
+
+ install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
+}
+
+package_lib32-libva-mesa-driver() {
+ pkgdesc="VA-API implementation for gallium (32-bit)"
+ depends=('lib32-libdrm' 'lib32-libx11' 'lib32-llvm-libs' 'lib32-expat'
'lib32-libelf'
+ 'lib32-libxshmfence' 'lib32-zstd')
+
+ _install fakeinstall/usr/lib32/dri/*_drv_video.so
+
+ install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
+}
+
+package_lib32-mesa-vdpau() {
+ pkgdesc="Mesa VDPAU drivers (32-bit)"
+ depends=('lib32-libdrm' 'lib32-libx11' 'lib32-llvm-libs' 'lib32-expat'
'lib32-libelf'
+ 'lib32-libxshmfence' 'lib32-zstd')
+
+ _install fakeinstall/usr/lib32/vdpau
+
+ install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
+}
+
+package_lib32-mesa() {
+ depends=('lib32-libdrm' 'lib32-wayland' 'lib32-libxxf86vm'
'lib32-libxdamage' 'lib32-libxshmfence'
+ 'lib32-libelf' 'lib32-libunwind' 'lib32-llvm-libs'
'lib32-lm_sensors' 'lib32-libglvnd'
+ 'lib32-zstd' 'lib32-vulkan-icd-loader' 'mesa')
+ depends+=('libsensors.so')
+ optdepends=('opengl-man-pages: for the OpenGL API man pages'
+ 'lib32-mesa-vdpau: for accelerated video playback'
+ 'lib32-libva-mesa-driver: for accelerated video playback')
+ provides=('lib32-mesa-libgl' 'lib32-opengl-driver')
+ conflicts=('lib32-mesa-libgl')
+ replaces=('lib32-mesa-libgl')
+
+ rm -rv fakeinstall/usr/share/drirc.d/00-mesa-defaults.conf
+ rm -rv fakeinstall/usr/share/drirc.d/00-radv-defaults.conf
+ rm -rv fakeinstall/usr/share/glvnd/egl_vendor.d/50_mesa.json
+
+ # ati-dri, nouveau-dri, intel-dri, svga-dri, swrast, swr
+ _install fakeinstall/usr/lib32/dri/*_dri.so
+
+ #_install fakeinstall/usr/lib32/bellagio
+ _install fakeinstall/usr/lib32/d3d
+ _install fakeinstall/usr/lib32/lib{gbm,glapi}.so*
+ _install fakeinstall/usr/lib32/libOSMesa.so*
+ _install fakeinstall/usr/lib32/libxatracker.so*
+ #_install fakeinstall/usr/lib32/libswrAVX*.so*
+
+ rm -rv fakeinstall/usr/include
+ _install fakeinstall/usr/lib32/pkgconfig
+
+ # libglvnd support
+ _install fakeinstall/usr/lib32/libGLX_mesa.so*
+ _install fakeinstall/usr/lib32/libEGL_mesa.so*
+
+ # indirect rendering
+ ln -s /usr/lib32/libGLX_mesa.so.0 "${pkgdir}/usr/lib32/libGLX_indirect.so.0"
+
+ # make sure there are no files left to install
+ find fakeinstall -depth -print0 | xargs -0 rmdir
+
+ install -m644 -Dt "${pkgdir}/usr/share/licenses/${pkgname}" LICENSE
+}