pkgname=sdl
pkgver=1.2.14
pkgrel=1
pkgdesc="A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard with directfb support"
arch=('i686' 'x86_64' 'arm')
url="http://www.libsdl.org"
license=('LGPL')
depends=('glibc' 'libxext' 'libxrender' 'libx11')
makedepends=('alsa-lib')
options=('!libtool')
source=(http://www.libsdl.org/release/SDL-${pkgver}.tar.gz
        sdl-1.2.14-joystick-crash.diff
        sdl-1.2.14-fix-mouse-clicking.patch
        sdl-1.2.14-fix-disappearing-cursor.patch
        sdl-1.2.14-disable-mmx.patch
        directfb-alignment.patch
        fs27469.patch)
md5sums=('e52086d1b508fa0b76c52ee30b55bec4'
         '9d8890b3817736a5d365f7497f096634'
         '04d8c179f125e04bcd4c9d60e013c2d7'
         'a6cf3e71b653aa97d0d8ae6c0a789807'
         '9ffecb9932a132ee5cefb4112e950761'
         '36fec2fec2d17accfad0ec1325bd9214'
         '89091617e27fcad64451bc0b28e48501')
build() {
echo "Build..."
  cd ${srcdir}/SDL-${pkgver}
  patch -Np1 -i $srcdir/sdl-1.2.14-joystick-crash.diff
  patch -Np1 -i $srcdir/sdl-1.2.14-fix-mouse-clicking.patch
  patch -Np1 -i $srcdir/sdl-1.2.14-fix-disappearing-cursor.patch
  patch -Np1 -i $srcdir/sdl-1.2.14-disable-mmx.patch
  patch -Np1 -i $srcdir/fs27469.patch
  patch -Np1 -i $srcdir/directfb-alignment.patch
  ./configure --prefix=/usr --disable-nasm --enable-alsa \
              --enable-video-directfb --enable-video-fbcon \
              --build=armv5tel-unknown-linux-gnueabi \
              --with-x --disable-rpath
  make
}

package() {
  cd ${srcdir}/SDL-${pkgver}
  make DESTDIR=${pkgdir} install
}
