Install linux dep

This commit is contained in:
halx99 2021-09-20 17:13:40 +08:00
parent 75af319e25
commit 78a5f8fff0
1 changed files with 11 additions and 0 deletions

View File

@ -37,3 +37,14 @@ DEPENDS+=' libasound2-dev'
DEPENDS+=' libxxf86vm-dev'
sudo apt-get install --allow-unauthenticated --yes $DEPENDS > /dev/null
echo "Installing latest freetype for linux ..."
mkdir buildsrc
cd buildsrc
git clone https://gitlab.freedesktop.org/freetype/freetype.git
cd freetype
sh autogen.sh
./configure --prefix=/usr --enable-freetype-config --disable-static
sudo make install
cd ..
cd ..