axmol/install-deps-linux.sh

50 lines
1.1 KiB
Bash
Raw Normal View History

2019-11-23 20:27:39 +08:00
#!/bin/bash
2022-10-27 10:11:47 +08:00
echo "This Shell Script will install dependencies for axmol"
2019-11-23 20:27:39 +08:00
echo -n "Are you continue? (y/n) "
read answer
if echo "$answer" | grep -iq "^y" ;then
echo "It will take few minutes"
else
exit
fi
sudo apt update
2019-11-23 20:27:39 +08:00
# for vm, libxxf86vm-dev also required
2019-11-23 20:27:39 +08:00
2020-10-24 10:37:38 +08:00
DEPENDS=' libx11-dev'
DEPENDS+=' automake'
DEPENDS+=' libtool'
DEPENDS+=' cmake'
2019-11-23 20:27:39 +08:00
DEPENDS+=' libxmu-dev'
DEPENDS+=' libglu1-mesa-dev'
DEPENDS+=' libgl2ps-dev'
DEPENDS+=' libxi-dev'
DEPENDS+=' libzip-dev'
DEPENDS+=' libpng-dev'
DEPENDS+=' libfontconfig1-dev'
DEPENDS+=' libgtk-3-dev'
DEPENDS+=' binutils'
DEPENDS+=' libbsd-dev'
DEPENDS+=' libasound2-dev'
2021-05-11 12:23:35 +08:00
DEPENDS+=' libxxf86vm-dev'
DEPENDS+=' libvlc-dev libvlccore-dev vlc'
2019-11-23 20:27:39 +08:00
# if vlc encouter codec error, install
# sudo apt install ubuntu-restricted-extras
sudo apt install --allow-unauthenticated --yes $DEPENDS > /dev/null
echo "Installing latest freetype for linux ..."
mkdir buildsrc
cd buildsrc
2022-06-13 01:13:08 +08:00
git clone https://github.com/freetype/freetype.git
cd freetype
2023-04-02 17:16:10 +08:00
git checkout VER-2-13-0
sh autogen.sh
./configure --prefix=/usr --enable-freetype-config --disable-static
sudo make install
cd ..
cd ..