Skip to content

Commit

Permalink
Change order of dependency build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxwell175 authored Feb 23, 2024
1 parent c994176 commit 61f78e3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,16 @@ make install
cd ..
fi

if [ ! -d fontconfig-2.15.0 ]; then
curl -L https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.15.0.tar.gz -o fontconfig.tar.gz
tar -xf fontconfig.tar.gz
cd fontconfig-2.15.0
./configure --prefix=${PREFIX} --disable-shared
make -j$(nproc --all)
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
Expand Down Expand Up @@ -285,16 +295,6 @@ make install
cd ..
fi

if [ ! -d fontconfig-2.15.0 ]; then
curl -L https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.15.0.tar.gz -o fontconfig.tar.gz
tar -xf fontconfig.tar.gz
cd fontconfig-2.15.0
./configure --prefix=${PREFIX} --disable-shared
make -j$(nproc --all)
make install
cd ..
fi

if [ ! -d tcl8.6.13 ]; then
curl -L http://downloads.sourceforge.net/project/tcl/Tcl/8.6.13/tcl8.6.13-src.tar.gz -o tcl.tar.gz
tar -xf tcl.tar.gz
Expand Down

0 comments on commit 61f78e3

Please sign in to comment.