blob: a3ad237c126dcaed3603627a41103ae0bc197885 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Description: Librairie pour le multimedia en mode framebuffer
# URL: http://www.libsdl.org/
# Maintainer: NuTyX
# Packager: thierryn1 at hispeed dot ch
# Depends on: alsa-lib, esound, nas, mesa3d
name=sdl
version=1.2.13
release=1
source=(http://www.libsdl.org/release/SDL-$version.tar.gz)
build() {
cd SDL-$version
./configure --prefix=/usr \
--disable-nasm \
--enable-alsa \
--enable-esd \
--with-x \
--mandir=/usr/share/man \
--infodir=/usr/share/info
make
make DESTDIR=$PKG install
}
|