Como instalar todas as bibliotecas SDL no Ubuntu 14.04?

4
dpkg -l | grep sdl

Este comando fornece os seguintes detalhes:

ii  libsdl1.2debian:i386                                        1.2.15-8ubuntu1.1                                   i386         Simple DirectMedia Layer

Eu não sei se o SDL 1.2 está sendo instalado no meu sistema ou não? Além disso, preciso instalar sdl image, mixer, ttf etc etc? Como instalá-los?

    
por dlpsankhla 13.06.2016 / 06:38

3 respostas

6

Você pode pesquisar todas as instâncias disponíveis de libsld1.2 com algo como o seguinte:

andrew@corinth:~$ apt-cache search ^libsdl | grep 1.2
libsdl1.2-dbg - Simple DirectMedia Layer debug files
libsdl1.2-dev - Simple DirectMedia Layer development files
libsdl1.2debian - Simple DirectMedia Layer
libsdl-image1.2-dbg - Image loading library for Simple DirectMedia Layer 1.2, debugging
libsdl-mixer1.2-dbg - Mixer library for Simple DirectMedia Layer 1.2, debugging
libsdl-net1.2-dbg - Network library for Simple DirectMedia Layer 1.2, debugging
libsdl-gfx1.2-4 - drawing and graphical effects extension for SDL
libsdl-gfx1.2-dev - development files for SDL_gfx
libsdl-gfx1.2-doc - documentation files for SDL_gfx
libsdl-image1.2 - Image loading library for Simple DirectMedia Layer 1.2, libraries
libsdl-image1.2-dev - Image loading library for Simple DirectMedia Layer 1.2, development files
libsdl-mixer1.2 - Mixer library for Simple DirectMedia Layer 1.2, libraries
libsdl-mixer1.2-dev - Mixer library for Simple DirectMedia Layer 1.2, development files
libsdl-net1.2 - Network library for Simple DirectMedia Layer 1.2, libraries
libsdl-net1.2-dev - Network library for Simple DirectMedia Layer 1.2, development files
libsdl-sound1.2 - Sound library for Simple DirectMedia Layer 1.2, libraries
libsdl-sound1.2-dev - Sound library for Simple DirectMedia Layer 1.2, development files
libsdl-ttf2.0-0 - TrueType Font library for Simple DirectMedia Layer 1.2, libraries
libsdl-ttf2.0-dev - TrueType Font library for Simple DirectMedia Layer 1.2, development files
andrew@corinth:~$ 

e depois simplesmente instale todos os arquivos resultantes.

Você pode facilmente deixar alguns como os arquivos .dbg que estão simplesmente depurando extras e você não precisará dos arquivos -dev a menos que esteja compilando. Alguns também serão dependências dos outros e serão automagicamente instalados com a instalação de um desses arquivos ...

    
por andrew.46 13.06.2016 / 10:05
3

Para instalá-lo:

sudo apt-get install libsdl2-2.0

e para instalar tudo o que for necessário para criar programas que usem o SDL:

sudo apt-get install libsdl2-dev
    
por Shahin Bakhshaei 28.04.2017 / 10:43
1

Você pode fazer isso:

sudo apt-get install libsdl1.2-dbg

Ou faça o download do código-fonte do SDL para compilar e instalar:

Faça o download do SDL

tar xvf SDL-1.2.tar.gz
cd SDL-1.2
./configure
make
sudo make install
    
por Silent_DXX 13.06.2016 / 06:46

Tags