diff options
author | tnut <thierryn1 at hispeed dot ch> | 2012-05-12 12:18:02 +0200 |
---|---|---|
committer | tnut <thierryn1 at hispeed dot ch> | 2012-05-12 12:18:02 +0200 |
commit | d66554ce802b565dd6d0d3affdd509131d17199b (patch) | |
tree | 14a171257062b32cd5b56b8c17a83101feb86a57 /sdl/Pkgfile | |
parent | 590a93447940f32499ecce95f8fcd53cdb8d58e4 (diff) | |
download | nutyx-pakxe-d66554ce802b565dd6d0d3affdd509131d17199b.tar.gz nutyx-pakxe-d66554ce802b565dd6d0d3affdd509131d17199b.tar.bz2 nutyx-pakxe-d66554ce802b565dd6d0d3affdd509131d17199b.tar.xz nutyx-pakxe-d66554ce802b565dd6d0d3affdd509131d17199b.zip |
sdl, ajout
Diffstat (limited to 'sdl/Pkgfile')
-rwxr-xr-x | sdl/Pkgfile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sdl/Pkgfile b/sdl/Pkgfile new file mode 100755 index 000000000..25b00e9fe --- /dev/null +++ b/sdl/Pkgfile @@ -0,0 +1,25 @@ +# 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 +# Run on: alsa-lib,esound,nas,mesa3d + +name=sdl +version=1.2.14 +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 +} + |