blob: 1cf13b5c74686abf00eec815b64d3e2bce3c7702 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
name=xorg-server
version=21.1.15
release=1
source="https://www.x.org/pub/individual/xserver/$name-$version.tar.xz"
build_opt="
-Dsuid_wrapper=true \
-Dxkb_output_dir=/var/lib/xkb \
-Dxkb_dir=/usr/share/X11/xkb \
-Dxorg=true
-Dglamor=true
"
postbuild() {
install -m 755 -d $PKG/etc/X11/xorg.conf.d
echo "needs_root_rights = yes" >> $PKG/etc/X11/Xwrapper.config
}
|