first commit

This commit is contained in:
ngn
2024-08-11 02:17:03 +03:00
commit ee34792885
1404 changed files with 13564 additions and 0 deletions

3
src/xinit/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
.cache/
dist/
root/

2
src/xinit/changes.md Normal file
View File

@ -0,0 +1,2 @@
# 1.4.2
First version

22
src/xinit/pkg.sh Normal file
View File

@ -0,0 +1,22 @@
NAME="xinit"
DESC="Usable script to start the xserver"
VERSION="1.4.2"
FILES=("https://www.x.org/pub/individual/app/xinit-$VERSION.tar.xz")
HASHES=("0e9a1b9a82b84ab229c709c0f939c113")
DEPENDS=(
"libx11" "xauth"
"xmodmap" "xrdb"
)
PACKAGE() {
tar xf $NAME-$VERSION.tar.xz
cd $NAME-$VERSION
./configure $XORG_CONFIG --with-xinitdir=/etc/X11/app-defaults
make && make DESTDIR=${ROOTDIR} install && ldconfig
sed -i '175s/.*/ xserverauthfile=`mktemp -p \/tmp serverauth.XXXXXXXXXX`/' \
"$ROOTDIR/usr/bin/startx"
cd .. && rm -rf $NAME-$VERSION
}