summaryrefslogtreecommitdiff
path: root/repo/x11
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-04-11 13:30:34 +0100
committerdavidovski <david@davidovski.xyz>2022-04-11 13:30:34 +0100
commitbce4ac0f65ffb8bedcdcbdb94eb796457b12f9e1 (patch)
tree5070b9f21b192e6aa0f2a92584a7cbbc6a00d68c /repo/x11
parent65f2daa1e41f38db5e29a73af9c02d6c390b1d24 (diff)
added files for pam and shadow
Diffstat (limited to 'repo/x11')
-rw-r--r--repo/x11/bspwm.xibuild2
-rw-r--r--repo/x11/mesa.xibuild13
2 files changed, 8 insertions, 7 deletions
diff --git a/repo/x11/bspwm.xibuild b/repo/x11/bspwm.xibuild
index 5512061..7887321 100644
--- a/repo/x11/bspwm.xibuild
+++ b/repo/x11/bspwm.xibuild
@@ -13,5 +13,5 @@ build () {
}
package () {
- make PREFIX=/usr DESTDIR=$PKG_DEST install
+ make DESTDIR=$PKG_DEST PREFIX=/usr install
}
diff --git a/repo/x11/mesa.xibuild b/repo/x11/mesa.xibuild
index 37a976b..3a5bcbf 100644
--- a/repo/x11/mesa.xibuild
+++ b/repo/x11/mesa.xibuild
@@ -6,20 +6,21 @@ DEPS="xorg-libs libdrm"
PKG_VER=21.3.7
SOURCE=https://mesa.freedesktop.org/archive/mesa-$PKG_VER.tar.xz
ADDITIONAL="
- mesa-$PKG_VER-add_xdemos-1.patch
- mesa-$PKG_VER-nouveau_fixes-1.patch
+ 0001-radeonsi-On-Aarch64-force-persistent-buffers-to-GTT.patch
+ add-use-elf-tls.patch
+ disable-rgb10-by-default.patch
+ mesa-21.3.7-add_xdemos-1.patch
+ mesa-21.3.7-nouveau_fixes-1.patch
+ musl-fix-includes.patch
"
DESC="An implementation of the OpenGL specification"
prepare () {
- patch -Np1 -i mesa-$PKG_VER-add_xdemos-1.patch
+ apply_patches
export GALLIUM_DRV="crocus,i915,iris,nouveau,r600,radeonsi,svga,swrast,virgl"
export DRI_DRIVERS="i965,nouveau"
-
- patch -Np1 -i mesa-$PKG_VER-nouveau_fixes-1.patch
-
}
build () {