From 48ca75555522716f0f686dcae3dd6cf3d8ad714d Mon Sep 17 00:00:00 2001 From: davidovski Date: Tue, 31 May 2022 11:05:19 +0100 Subject: removed idea of repos --- repo/xorg-server/xorg-server.xibuild | 54 ++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 repo/xorg-server/xorg-server.xibuild (limited to 'repo/xorg-server') diff --git a/repo/xorg-server/xorg-server.xibuild b/repo/xorg-server/xorg-server.xibuild new file mode 100644 index 0000000..fa261f1 --- /dev/null +++ b/repo/xorg-server/xorg-server.xibuild @@ -0,0 +1,54 @@ +#!/bin/sh + +MAKEDEPS="meson ninja doxygen xmlto" +DEPS="libxcvt pixman font-util xkeyboardconfig elogind libepoxy libtirpc polkit acpid nettle libgcrypt xcb-util-keysyms xcb-util-image xcb-util-renderutil xcb-util-wm xkbcomp" + +PKG_VER=21.1.3 +SOURCE=https://www.x.org/pub/individual/xserver/xorg-server-$PKG_VER.tar.xz + +build () { + mkdir build && + cd build && + + meson --prefix=$XORG_PREFIX \ + -Dxorg=true \ + -Dxephyr=true \ + -Dglamor=true \ + -Dxnest=true \ + -Dxvfb=true \ + -Dxwin=false \ + -Dglx=true \ + -Dxdmcp=true \ + -Dxdm-auth-1=true \ + -Dxcsecurity=true \ + -Dsecure-rpc=false \ + -Dipv6=true \ + -Dxkb_dir=/usr/share/X11/xkb \ + -Dxkb_output_dir=/var/lib/xkb \ + -Dlisten_tcp=false \ + -Dlisten_unix=true \ + -Dlisten_local=true \ + -Dsuid_wrapper=true \ + -Dpciaccess=true \ + -Dudev=true \ + -Dhal=false \ + -Dsystemd_logind=false \ + -Ddpms=true \ + -Ddri1=true \ + -Ddri2=true \ + -Ddri3=true \ + .. + ninja +} + +package () { + DESTDIR=$PKG_DEST ninja install + + mkdir -p $PKG_DEST/etc/X11/xorg.conf.d && + mkdir -p $PKG_DEST/etc/sysconfig && +cat >> $PKG_DEST/etc/sysconfig/createfiles << "EOF" +/tmp/.ICE-unix dir 1777 root root +/tmp/.X11-unix dir 1777 root root +EOF + +} -- cgit v1.2.1