Created
September 19, 2018 09:51
-
-
Save tosik/195d04562ec1eec519aabb242510ce3a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| wget http://download.savannah.gnu.org/releases/freetype/freetype-2.9.tar.gz | |
| wget http://libsdl.org/release/SDL2-2.0.8.tar.gz | |
| wget https://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.3.tar.gz | |
| wget https://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.14.tar.gz | |
| wget https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-2.0.2.tar.gz | |
| wget http://public.p-knowledge.co.jp/gnu/gettext/gettext-latest.tar.gz | |
| git clone https://github.com/libSDL2pp/libSDL2pp.git | |
| tar -xvf freetype-2.9.tar.gz | |
| tar -xvf SDL2-2.0.8.tar.gz | |
| tar -xvf SDL2_image-2.0.3.tar.gz | |
| tar -xvf SDL2_ttf-2.0.14.tar.gz | |
| tar -xvf SDL2_mixer-2.0.2.tar.gz | |
| tar -xvf gettext-latest.tar.gz | |
| (cd libSDL2pp && cmake . && xargs rm < install_manifest.txt) | |
| (cd freetype-2.9 && ./configure && make && make uninstall) | |
| (cd SDL2-2.0.8 && ./configure && make && make uninstall) | |
| (cd SDL2_image-2.0.3 && ./configure && make && make uninstall) | |
| (cd SDL2_ttf-2.0.14 && ./configure && make && make uninstall) | |
| (cd SDL2_mixer-2.0.2 && ./configure && make && make uninstall) | |
| (cd gettext-latest && ./configure && make && make uninstall) | |
| # uninstall boost | |
| # https://lists.boost.org/boost-users/2005/01/9444.php | |
| rm /usr/local/lib/libboost* | |
| rm -r /usr/local/include/boost |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment