Skip to content

Commit

Permalink
Build Xft after xcb
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxwell175 authored Feb 24, 2024
1 parent 900b6d2 commit c18af01
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -227,20 +227,20 @@ make install
cd ..
fi

if [ ! -d libXft-2.3.8 ]; then
curl -L https://xorg.freedesktop.org/releases/individual/lib/libXft-2.3.8.tar.gz -o libXft.tar.gz
tar -xf libXft.tar.gz
cd libXft-2.3.8
if [ ! -d libxcb-1.16 ]; then
curl -L https://xorg.freedesktop.org/releases/individual/lib/libxcb-1.16.tar.gz -o libxcb.tar.gz
tar -xf libxcb.tar.gz
cd libxcb-1.16
./configure --prefix=${PREFIX} --disable-shared
make -j$(nproc --all)
make install
cd ..
fi

if [ ! -d libxcb-1.16 ]; then
curl -L https://xorg.freedesktop.org/releases/individual/lib/libxcb-1.16.tar.gz -o libxcb.tar.gz
tar -xf libxcb.tar.gz
cd libxcb-1.16
if [ ! -d libXft-2.3.8 ]; then
curl -L https://xorg.freedesktop.org/releases/individual/lib/libXft-2.3.8.tar.gz -o libXft.tar.gz
tar -xf libXft.tar.gz
cd libXft-2.3.8
./configure --prefix=${PREFIX} --disable-shared
make -j$(nproc --all)
make install
Expand Down

0 comments on commit c18af01

Please sign in to comment.