first commit
This commit is contained in:
3
src/xorg/.gitignore
vendored
Normal file
3
src/xorg/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
.cache/
|
||||
dist/
|
||||
root/
|
2
src/xorg/changes.md
Normal file
2
src/xorg/changes.md
Normal file
@ -0,0 +1,2 @@
|
||||
# 1
|
||||
First version
|
21
src/xorg/pkg.sh
Normal file
21
src/xorg/pkg.sh
Normal 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"
|
||||
}
|
Reference in New Issue
Block a user