add some xorg libraries

This commit is contained in:
hippoz 2021-07-18 20:24:08 +03:00
parent 203e0834d1
commit c0acbb246d
Signed by untrusted user who does not match committer: hippoz
GPG key ID: 7C52899193467641
12 changed files with 104 additions and 0 deletions

11
xorg-libXau/build Executable file
View file

@ -0,0 +1,11 @@
wget https://www.x.org/pub/individual/lib/libXau-1.0.9.tar.bz2
tar -xf libXau-1.0.9.tar.bz2
cd libXau-1.0.9
export XORG_PREFIX="/usr"
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
--localstatedir=/var --disable-static"
./configure $XORG_CONFIG
make
make DESTDIR="$1" install

5
xorg-libXau/package Executable file
View file

@ -0,0 +1,5 @@
pkg_config_deploy=true
pkg_config_ver="1.0.9"
pkg_config_name="xorg-libXau"
pkg_config_makedepends=""
pkg_config_depends="xorg-xorgproto"

11
xorg-libXdmcp/build Executable file
View file

@ -0,0 +1,11 @@
wget https://www.x.org/pub/individual/lib/libXdmcp-1.1.3.tar.bz2
tar -xf libXdmcp-1.1.3.tar.bz2
cd libXdmcp-1.1.3
export XORG_PREFIX="/usr"
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
--localstatedir=/var --disable-static"
./configure $XORG_CONFIG --docdir=/usr/share/doc/libXdmcp-1.1.3 &&
make
make DESTDIR="$1" install

5
xorg-libXdmcp/package Executable file
View file

@ -0,0 +1,5 @@
pkg_config_deploy=true
pkg_config_ver="1.1.3"
pkg_config_name="libXdmcp"
pkg_config_makedepends=""
pkg_config_depends="xorg-xorgproto"

15
xorg-libxcb/build Executable file
View file

@ -0,0 +1,15 @@
wget https://xorg.freedesktop.org/archive/individual/lib/libxcb-1.14.tar.xz
tar -xf libxcb-1.14.tar.xz
cd libxcb-1.14
export XORG_PREFIX="/usr"
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
--localstatedir=/var --disable-static"
CFLAGS="${CFLAGS:--O2 -g} -Wno-error=format-extra-args" \
PYTHON=python3 \
./configure $XORG_CONFIG \
--without-doxygen \
make
make DESTDIR="$1" install

5
xorg-libxcb/package Executable file
View file

@ -0,0 +1,5 @@
pkg_config_deploy=true
pkg_config_ver="1.0.9"
pkg_config_name="xorg-libxcb"
pkg_config_makedepends=""
pkg_config_depends="xorg-libXau xorg-xcb-proto libXdmcp"

11
xorg-utilmacros/build Executable file
View file

@ -0,0 +1,11 @@
wget https://www.x.org/pub/individual/util/util-macros-1.19.3.tar.bz2
tar -xf util-macros-1.19.3.tar.bz2
cd util-macros-1.19.3
export XORG_PREFIX="/usr"
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
--localstatedir=/var --disable-static"
./configure $XORG_CONFIG
make DESTDIR="$1" install

5
xorg-utilmacros/package Executable file
View file

@ -0,0 +1,5 @@
pkg_config_deploy=true
pkg_config_ver="1.19.3"
pkg_config_name="xorg-utilmacros"
pkg_config_makedepends=""
pkg_config_depends=""

11
xorg-xcb-proto/build Executable file
View file

@ -0,0 +1,11 @@
wget https://xorg.freedesktop.org/archive/individual/proto/xcb-proto-1.14.1.tar.xz
tar -xf xcb-proto-1.14.1.tar.xz
cd xcb-proto-1.14.1
export XORG_PREFIX="/usr"
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
--localstatedir=/var --disable-static"
PYTHON=python3 ./configure $XORG_CONFIG
make
make DESTDIR="$1" install

5
xorg-xcb-proto/package Executable file
View file

@ -0,0 +1,5 @@
pkg_config_deploy=true
pkg_config_ver="1.14.1"
pkg_config_name="xorg-xcb-proto"
pkg_config_makedepends=""
pkg_config_depends="xorg-utilmacros"

15
xorg-xorgproto/build Executable file
View file

@ -0,0 +1,15 @@
wget https://xorg.freedesktop.org/archive/individual/proto/xorgproto-2021.4.tar.bz2
tar -xf xorgproto-2021.4.tar.bz2
cd xorgproto-2021.4
export XORG_PREFIX="/usr"
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc \
--localstatedir=/var --disable-static"
export DESTDIR="$1"
mkdir build
cd build
meson --prefix=$XORG_PREFIX -Dlegacy=true ..
ninja
ninja install

5
xorg-xorgproto/package Executable file
View file

@ -0,0 +1,5 @@
pkg_config_deploy=true
pkg_config_ver="2021.4"
pkg_config_name="xorg-xorgproto"
pkg_config_makedepends=""
pkg_config_depends=""