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/xorg/.gitignore vendored Normal file
View File

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

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

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

21
src/xorg/pkg.sh Normal file
View File

@ -0,0 +1,21 @@
NAME="xorg"
DESC="All required packages to get XORG up and running"
VERSION="1"
FILES=()
HASHES=()
DEPENDS=(
"libdrm" "fonts" "libxmu" "libxrandr" "libxrender" "libxslt" "libxt"
"libxtst" "libxshmfence" "mtdev" "libxinerama" "libxcb" "libxau" "libxaw"
"libxcomposite" "libxcursor" "libxcvt" "libxkbfile" "libxi" "libxext"
"xf86-input-evdev" "xf86-input-libinput" "xf86-input-synaptics" "xf86-input-wacom"
"xinit" "xorg-server" "xkbcomp" "xcb-util" "xcb-proto" "xcb-util-cursor"
"xcb-util-image" "xcb-util-keysyms" "xcb-util-renderutil" "xcb-util-wm" "mesa"
"libxfixes" "iceauth" "freetype" "harfbuzz" "fribidi" "libxft" "libxfont2"
"libtirpc" "graphite2" "gcc-libs"
)
PACKAGE() {
echo This is just a wrapper package, nothing to do
mkdir -pv "$ROOTDIR/var/lib/wrapperpkg"
touch "$ROOTDIR/var/lib/wrapperpkg/mp-xorg"
}