mirror of
https://github.com/u0u0/Cocos2d-Lua-Community.git
synced 2026-05-06 13:51:16 +08:00
26 lines
540 B
Bash
Executable File
26 lines
540 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "This Shell Script will install dependencies for Cocos2d-Lua-Community"
|
|
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-get update
|
|
|
|
DEPENDS+=' libx11-dev'
|
|
DEPENDS+=' libxmu-dev'
|
|
DEPENDS+=' libglu1-mesa-dev'
|
|
DEPENDS+=' libgl2ps-dev'
|
|
DEPENDS+=' libxi-dev'
|
|
DEPENDS+=' libfontconfig1-dev'
|
|
DEPENDS+=' libglew-dev'
|
|
DEPENDS+=' libgtk-3-dev'
|
|
DEPENDS+=' libxxf86vm-dev'
|
|
DEPENDS+=' binutils'
|
|
|
|
sudo apt-get install --yes $DEPENDS
|