# Maintainer: Sven-Hendrik Haase pkgname=sdl2 pkgver=2.0.0 pkgrel=2 pkgdesc="A library for portable low-level access to a video framebuffer, audio output, mouse, and keyboard (Version 2)" arch=('i686' 'x86_64') url="http://www.libsdl.org" license=('MIT') depends=('glibc' 'libxext' 'libxrender' 'libx11' 'libgl') makedepends=('alsa-lib' 'mesa' 'libpulse' 'cmake') optdepends=('alsa-lib: ALSA audio driver' 'libpulse: PulseAudio audio driver') source=("http://www.libsdl.org/tmp/release/SDL2-${pkgver}.tar.gz") md5sums=('ffb0f2115b3aaee9f3150301fdd680cd') build() { cd "${srcdir}/SDL2-${pkgver}" mkdir build && cd build cmake .. \ -DCMAKE_INSTALL_PREFIX=/usr \ -DSDL_STATIC=OFF \ -DRPATH=OFF make } package() { cd "${srcdir}/SDL2-${pkgver}/build" make DESTDIR="${pkgdir}/" install install -Dm644 ../COPYING.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" }