SDL (Library)
Jump to navigation
Jump to search
SDL
Install
- from sources (https://libsdl.org/release/):
# shared/opt install schema v1.5.6 #### as common user #### # define applications vars export SOFTWARE_PATH="/home/shared/opt/software" export NAME="libsdl" export VERSION="2.0.14" export URL="https://libsdl.org/release/SDL2-${VERSION}.tar.gz" su - -w SOFTWARE_PATH,NAME,VERSION #### as root #### # install packages and prepare destination path apt-get -q -y install wget coreutils findutils < /dev/null apt-get -q -y install tar gzip gcc make < /dev/null mkdir -m 777 "${SOFTWARE_PATH}/tmp_install/" "${SOFTWARE_PATH}/${NAME}_${VERSION}/" exit #### as common user #### umask 0027 cd "${SOFTWARE_PATH}/tmp_install" wget -c --no-check-certificate "${URL}" tar -xzf "SDL2-${VERSION}.tar.gz" cd "SDL2-${VERSION}" # define compiler flags optimizations (from debian dpkg-buildflags command) export CFLAGS="-g0 -O2 -fstack-protector-strong -Wformat -Werror=format-security -mtune=native -pipe" export LDFLAGS="-s -Wl,-z,relro" # configure, build and install ./configure --prefix="${SOFTWARE_PATH}/${NAME}_${VERSION}" --enable-sdl2-config make -s make install cd su - -w SOFTWARE_PATH,NAME,VERSION #### as root #### # ensure permissions to destination path cd "${SOFTWARE_PATH}" chown -R root:users "${NAME}_${VERSION}" find "${NAME}_${VERSION}" -type d -exec chmod a-s,u+rwx,g+rx,g-w,o-rwx {} \; find "${NAME}_${VERSION}" -type f -exec chmod a-s,u+rw,g+r,g-w,o-rwx {} \; rm -rf tmp_install ln -s -f -T "${NAME}_${VERSION}" "${NAME}" exit #### as common user #### # test the application (you can put the follow in ~/.profile) export SOFTWARE_PATH="/home/shared/opt/software" export SDL_HOME="${SOFTWARE_PATH}/libsdl" export PATH="${PATH}:${SDL_HOME}/bin" export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${SDL_HOME}/lib" sdl2-config --version
libSDL_mixer
Install
- from sources (https://www.libsdl.org/projects/SDL_mixer/release/):
# shared/opt install schema v1.5.5 #### as common user #### # define applications vars export SOFTWARE_PATH="/home/shared/opt/software" export NAME="libsdl" export VERSION="2.0.1" export URL="https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-${VERSION}.tar.gz" su - -w SOFTWARE_PATH,NAME,VERSION #### as root #### # install packages and prepare destination path apt-get -qq -y install wget coreutils findutils tar gzip gcc make mkdir -m 777 -p "${SOFTWARE_PATH}/tmp_install/" chmod -R a+w "${SOFTWARE_PATH}/${NAME}" exit #### as common user #### umask 0027 cd "${SOFTWARE_PATH}/tmp_install" wget -c --no-check-certificate "${URL}" tar -xzf "SDL2_mixer-${VERSION}.tar.gz" cd "SDL2_mixer-${VERSION}" # define compiler flags optimizations (from debian dpkg-buildflags command) export CFLAGS="-g0 -O2 -fstack-protector-strong -Wformat -Werror=format-security -mtune=native -pipe" export LDFLAGS="-s -Wl,-z,relro" # configure, build and install ./configure --prefix="${SOFTWARE_PATH}/${NAME}" --with-sdl-prefix="${SOFTWARE_PATH}/${NAME}" make -s make install cd su - -w SOFTWARE_PATH,NAME,VERSION #### as root #### # ensure permissions to destination path cd "${SOFTWARE_PATH}" chown -R root:users -H "${NAME}" find "${NAME}" -follow -type d -exec chmod a-s,u+rwx,g+rx,g-w,o-rwx {} \; find "${NAME}" -follow -type f -exec chmod a-s,u+rw,g+r,g-w,o-rwx {} \; rm -rf tmp_install exit